facebook real time subscriptions api [closed] - facebook

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
How do you subscribe to the real time API to user photos changes in order to get the likes and comments of user uploaded photos when they are liked and commented? Are there any necessary app settings or specific graph api calls that need to be made?
Regards

Have a look at the docs at
https://developers.facebook.com/docs/graph-api/real-time-updates/v2.4
Keep in mind that you can only receive user updates if the user has given your application the appropriate permissions.

Related

I don't want to require login for my app, but how do I keep their data separate? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I don't want to have users login or anything, so how would I capture and sort their data to firebase?
Is there anyway to code and have the app recognize people by their device?
Firebase provides an anonymous login feature. You can read more about it here:
https://firebase.google.com/docs/auth/ios/anonymous-auth
Also, if you choose to include a sign in feature later, you can convert the anonymous account into a permanent account while keeping their data.

How to change configuration of Facebook app with API graph? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
i need to change the configuration of an application with the API of facebook like the application domains, I have the application id and the secret key but I don't find how to make this request
The token generated automatically on the graph API doesn't work for get some data, I ahve to generate first the token with the correct call and assign this on request.
enter image description here

How to write Facebook App that continuously update profile picture [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I want to know if its possible to create Facebook app that continuously update users profile picture. I can't see anything in the docs. Do you know if this is possible and if so any docs on implementing it?
Thanks in advance.
It is not possible for the User Profile. There is no way to update the profile picture with the API directly.
There are many Stackoverflow threads about this already, this one is very old but the answer is still correct: Facebook API/PHP - Is it possible to change a user's profile image via FB Graph API?

Facebook App ID - Multiple Site URL's [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have a product consisting of hundreds of separate websites - each of which has a unique URL. Unfortunately it is not feasible for me to create a separate Facebook App ID for each website. Is it possible to configure one Facebook App ID that can be shared/used across all websites?
I know it's possible with subdomains but haven't had any luck finding much information about my situation.
Thanks!
There isn't. The only way it so redirect to a login page that is the same for all.

Adding Year To FB Timeline Automatically [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
Does anyone knows, it is possible to add a automatic photo to FB timeline in certain year. For example, I have this app where user click a button, then automatically will post a photo in the year 1983. Does FB allow that to happen?
When publishing to the open graph, you can in fact set the time so that you can post a past event.
There's an official document/toturial for that, part of the Open Graph docs: Publishing Past Actions.
Hope this is what you're after.