How to write Facebook App that continuously update profile picture [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 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?

Related

Can I get the number of likes from a facebook page without being the admin? [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 6 years ago.
Improve this question
My question is that. I'm trying to get the likes of a facebook page with facebook apigraph explorer but I can't get the count. I have look for other answers but they don't work to me so I'm thinking that it is because I'm not administrator, could be ?
I think that it is a simple thing so it have to be possible, as I can see the likes of a page entering in it on facebook.
I know that with /namepage/likes I can get all the likes but I need the count of all of them. For example:
humorcabron/likes?fields=likes.limit(1).summary(true)
but I don't get the count of all of them.
Plese could you tell me How can i get the number of likes and what I'm getting?
Solved the previous versions of the api (before 2.5) works like I said at first
humorcabron?fields=likes.summary(true). At newer versions what I was looking for is humorcabron?fields=fan_count

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.

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.

Facebook type friend search in zend framework [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 want to make Facebook type friend search in my zend based application,in which data come from database and when user click on his searched friend he will go to his profile page.plese suggest me as i don't able to find good example on google.please someone help me and tell me step by step for doing this.
http://www.9lessons.info/2009/06/autosuggestion-with-jquery-ajax-and-php.html
checkout this tutorial it helps me lot do the same in my zend based application
watched this: http://www.zendcasts.com/autocomplete-control-with-zendx_jquery/2010/07/ Really great. It works perfectly.
at some stage you have to make some customize to call user profile on click event of list

Application for posting activities on users wall [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 wish to have an application that can post on facebook about all the activities of user on my website without asking for permission again and again.
I wish to do in the way dailymotion does everytime u watch a video there.
Can anyone guide me for the same. Just steps or some sample code will be suffice.
Thanks !
You should learn about open grpah
Here is the tutorial
Here are the sample codes.
And also, there is an official php sdk and also JS sdk for facebook api, which makes life easier.