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

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

Related

How can I save an integer value to Firebase in Flutter and retrieve this saved value? [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 7 months ago.
Improve this question
I am making an application with Flutter and in this application I want to login with integer-value-password that I have saved in database instead of email-password login. I guess there is no such login form in Authentication. So where do I save this integer value?
As an example, a student will log into the system with their school number and password.
You should write your backend API for this, for example with cloud functions that read/write from your database.

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.

see api calling information on chrome developer tab [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 3 years ago.
Improve this question
i want to see calling of an API in chrome network tab to implement them in my web client.
i go to the domain food.shahed.ac.ir
then some api calls very fast and then redirects to another page very fast.
so i can not see the first requests .
You can check Preserve log checkbox.
Then all requests should be available.

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 real time subscriptions api [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 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.