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.
Related
I'm creating a type of chat messaging app using firebase. I'm following firebase documentation and the codelab links for the samples, but I'm stuck at one point before the chatting part.
I ask the user to login to his Google+ account using Google+ api in my app, then they have to connect which will send invites to whomsoever they wish. I implemented it as per this link. It is indeed sending out a mail to that user as a invitation request, but I'm not able to understand what is supposed to happen once they click on invite. Or how will the two user start conversing with each other?
May be I'm missing out some crucial steps, please help me out.
Logic/Code question here.
Hello all,
I am building an social network type of Android app where specific group of people share their views. And for this , I planned to use only Facebook for everything, posting, commenting and all. The posts are posted on a page.
My problem is like this:
Suppose, a user posted a thing through the app, another user comes and interact with the post by commenting.
Now I need to send a notification to the first user that second user interacted with his/her post.
The notification should be on mobile app, not Facebook app.
Any idea, how can I solve this problem?
Any sort of help would be appreciated.
There is no simple solution for this. You may want to look for third-party solutions. Basically,
When a user logs in, send the device token and facebook user id to your server and store them in a database.
When a user makes a post, link the post id to the device token.
When a user comments, get the facebook user id of the parent post, then get the device token, then send a notification to the device token.
I am developing an android app for an E-commerce website. I am a newbie in this field. I want to implement cash on delivery option in the app. I am taking the details of the user like name, email,shipping address in the app. After placing order I want to send a confirmation mail to the email id provided by user from my official email of the company. Please guide me with the code,how can I do that? Thanks in advance.
It is very much possible
http://php.net/manual/en/function.mail.php
Check this stackoverflow question too.
Send mail by php mail() function
I am developing an application in which user can share messages with his/her Facebook friends. I am using Facebook API for android. I am able to authenticate user, as well as get my friend list as a Facebook user and also post message on wall, but I am looking for sending message/post on wall to my friends and I didn't get any solution for that, so how can I achieve this?
I haven't found a Facebook API to send a private message to the logged in user's friend.
I would like to use something like this
But calling this dialog up in a browser on the phone isn't a great user experience.
Is their either an API i can use to send a message to a Facebook friend?
Or are there plans to support the send dialog on Android?