Mark friends by mail and location using javascript api

Now you can mark friends and location in the feed message https://developers.facebook.com/blog/post/2012/03/07/building-better-stories-with-location-and-friends/ according to this link.

I would like to do this using the javascript api using the FB.ui method, so without publish_stream authorization.

Does anyone know how I can do this?

+4
source share
1 answer

Well according to the docs, using the place identifier and adding the place parameter works on the api post graph. Unfortunately, after checking this, it seems this is not the case with the FB.ui method. It also looks like you cannot tag friends using this method.

This page https://developers.facebook.com/docs/reference/dialogs/feed shows all the available properties, and it does not look like the place is one of them. Therefore, I think that this is impossible at the moment when I am afraid. Perhaps you could add an error request to add it to

+2
source

Source: https://habr.com/ru/post/1403229/


All Articles