Wizcorp / phonegap-facebook-plugin

The official plugin for Facebook in Apache Cordova/PhoneGap
Other
1.91k stars 2.01k forks source link

Tag friends and nearby location #909

Open Paul-Isache opened 9 years ago

Paul-Isache commented 9 years ago

Hi,

I want to use this plugin in my Cordova app but I was wondering if it is possible to tag friends and nearby places, like in the latest Facebook Graph API version (2.1)?

Thank you!

kiempoturner commented 9 years ago

You can use this to get permission for taggable friends but you must have Facebook approve it before using it Live.

 window.facebookConnectPlugin.api('/me/taggable_friends', null,
   function (success),
   function (error) { }
 );

I got all the data needed for taggable friends, the thing im missing now is how to tag them @~@.

I used the showDialog call, but it does not allow me to tag anyone.

@aogilvie some help please :)

Paul-Isache commented 9 years ago

I don't want tot create a custom functionality to search for my friends, I thought there was a way tot tag them in that dialog.

aogilvie commented 9 years ago

@Paul-Isache Hi, we don't support presentShareDialogWithOpenGraphAction which is required to publish "Open Graph actions" (These actions include tags and stories for example).

aogilvie commented 9 years ago

Feature: Tags.

Paul-Isache commented 9 years ago

Ok.. I can't wait to see this as a feature..

kiempoturner commented 9 years ago

Hello, any solution for this? I'm stuck here in tagging friends, already got the permission from facebook tho. Post is shared but still unable to tag friends.

ronkorving commented 9 years ago

As this is a community supported project, PRs are of course very welcome :)

JohnCashmore commented 9 years ago

Support for this would be awesome hopefully someone will submit a pull request

Lestt commented 8 years ago

Hi guys,

I need this feature too. I am able to tag et check in via the api method, in adding "tags" and "place" as parameters in the url, but if i add them in the first parameter of showDialog it doesn't work.

Sadly, i need to show to my user the content of the post before posting, and the "api" method doesn't show the post like showDialog does.

Is there any updates, or have i missed something ?