Retrieving the Facebook framework

This question has appeared several times. I want to get the cover photo of facebook timeline through api chart.

The answer I have seen everywhere is that this is not possible. However, I came across the website http://www.timelinemoviemaker.com/ , which really extracts your cover photo of the timeline. Is there a special permission granted to the site to access the cover? Or they used some other method to extract the cover. Please let me know. Thanks in advance.

+7
source share
4 answers

Get an album called Covers. The timeline cover is at position 1 Visit Get Facebooks cover art through the PHP SDK and graphic API for extracting album art

+1
source

Now you can access the cover using the api.

https://graph.facebook.com/19292868552?fields=cover

+8
source

can you access pic cover from api using http get response GET / V2.5 / me? fields = cover

GraphRequest request = GraphRequest.newMeRequest( accessToken, new GraphRequest.GraphJSONObjectCallback() { @Override public void onCompleted(JSONObject object, GraphResponse response) { // Insert your code here } }); Bundle parameters = new Bundle(); parameters.putString("fields", "cover"); request.setParameters(parameters); request.executeAsync(); 

but note that u must have an open and registered facebook access token application

0
source

The easiest way to get a cover from Facebook is to right-click on the image, select a copy of the image from the pop-up menu, then open the paint (or any other program that you use to view your photos), and then CTL + V for paste.

-4
source

All Articles