I'm having issues with facebook and PHP.
I'm trying to change the cover photo of my facebook page when i refresh it. Facebook documentation isn't clear at all, i just understood that it's not possible to do it with the php API yet.
I found that on fb dvpers :
"Also, you can set your Page's cover photo by issuing an HTTP POST request:
curl -F "cover=1232343" -F "offset_y=30" -F "no_feed_story=false" \ "https://graph.facebook.com/PAGE_ID?access_token__" "
i can get my token access through browser with an url like :
https://www.facebook.com/dialog/oauth?client_id=APP_ID&redirect_uri=URL&scope=publish_stream
but i don't understand well how to use curl to change the cover photo of my app. If anyone could help it would be awesome. Thanks for ur help.