I want to develop a app which can get notifications from gmail, twitter and facebook. Something like BlingBoard (https://play.google.com/store/apps/details?id=com.jappka.blingboard&hl=en).
I have started to use the facebook sdk, have done nothing for gmail and twitter yet. Is there any other way to access the notifications or using their api's is probably the only way to go about this.
Thanks for your help
For Email:
Use K9 Client android.
For Facebook:
Create Broadcast reciever to recieve notifications.
For Twitter :
Same.
Related
I am trying to build an Chat app in which I can receive & send messages to my friends from/into Facebook Messenger using APIs.
Does Facebook provide such APIs to do so?
I tried to find the way, maybe we can do it using Webhook, but I think using webhook we only can send the message. Is there any android demo for this? Please share a link if you have any.
Please suggest what I can do to achieve this if you have any ideas.
Does Facebook provide such APIs to do so?
No.
There are no APIs for user-to-user communication via Messenger.
Only conversations between a user and a page can be handled via API.
i've to implement the scenario described below
for example
app allows users to login through facebook in app. now in app i want
to select any register user(from all users) and send message directly
from app to that specific person in facebook messenger automatically.
without going into messenger app
is it possible in android or not ?
if it is possible then please guide me how can i implement this. ?
thanks
You can't pass a specific message that is not allowed by Facebook Platform Policy and privacy. But you can pass uri to the intent like Uri uri = Uri.parse("fb-messenger://user/user_id");
I create android app using LinkedIn SDK. I want send invite in email for user which does not register in network. How do i do it?
It doesn't seem to be part of the public API. At least it's not exposed on https://developer.linkedin.com/ and https://apigee.com/console/linkedin
In my android app, I wish to allow user to invite friends from different social platforms. User already can invite friends from Facebook, VK, from his contacts list on phone, but I can't find way to send invite message to Google+. Is this really possible? Or maybe I can send message somehow using google_id?
I don't need to post on my wall.
Take a look at this link.
There is a setRecipients method, which allows you to share it only with a few persons. It's not the same as private messaging, and it will appear on the wall (only for you and those persons), but it looks like G+ is supposed to make it this way.
Hi I want to send notifications from android app to facebook. To send facebook notification i got this link : https://developers.facebook.com/docs/concepts/notifications/ But i am not sure how to use this link in android to send notification.
Please can any body guide me for this?
You can't send notifications from an Android app. Tried to POST using the link you provided and got the following error:
{"error":{"message":"(#200) Only web canvas apps can send app notifications","type":"OAuthException","code":200}}
Maybe you could use this one:
https://developers.facebook.com/docs/android/send-requests/
We're not allowed to send notifications from Android app using the notifications API, nor sending App Requests from non game app using Requests APIs. I'm interested too to know how can we notify the user from non-game-android app.