Update Playlist Image Deezer API - deezer

Is it possible to update a playlist artwork image thanks the Deezer API ?
There's no specific information on how do that here => https://developers.deezer.com/api/playlist

Unfortunately it is not possible to update the playlist artwork with the Deezer API.
The only solution is to use the front website https://www.deezer.com/fr/playlist/(playlist_id) --> Edit button

Related

How to get the full track mp3 url?

Through the track api I got preview field,it can provide a 30 second address.but I want get a full track mp3 url, excuse how to get the full track mp3 url by deezer API when I have a Premium+ users token.Thinks.
The only way to play a full track is by using our SDKs available here: http://developers.deezer.com
There is no possibility to retrieve the MP3 URL.

Search for tracks in Deezer playlist

In the Deezer API, is it possible to search for tracks in a specific playlist? Something like http://api.deezer.com/search/track?playlist=785141981&q=felix.
I don't think you can.
You will have to load the playlist with http://api.deezer.com/playlist/785141981, then look for the tracks.data property.
You will have all the tracks for this playlist then you can do the search manually.

Is it possible to edit a photo caption after it has been uploaded to facebook?

Is it possible to edit a photo or a video caption and description after it was uploaded to facebook using the GraphAPI?
what I mean is can you upload the video using your own application and some time afterwards the application updates the caption?
Yes, using the Graph API, just HTTP POST to the {photoId} with the updated parameters in the form post. Play with that functionality here: http://developers.facebook.com/tools/explorer?method=GET&path=me

Streaming video from Facebook

I want to stream a video from Facebook to my site and use my own custom video player (flowplayer for instance) to play it. Basicly I want to access the registered user's videos and play them in my application. is it possible? If it is, how can I achieve that?
Fairly easy, but there are a few steps to go thru.
Grab a list of their videos from the Graph API me/videos using their user access_token
Present user with list of their videos, let user select video to watch.
For the id of the video selected, call the Graph API and FQL the src or src_hq which gives you the link to the mp4 of the video
Point your custom player to the mp4 link.

How can I download a video from Facebook using GraphAPI?

I want to download a video from facebook to the clients local drive. I saw a few browser plugins and Facebook apps that are able to that and I was wondering how it can be done using the GraphAPI or in any other way.
First, you get the Graph API object. If the object is public, it's simple, just get https://graph.facebook.com/10151651550011063. (Where the number is the object's ID, equal to the ?v=OBJECTID in the facebook video URL.)
If the object is not public, you need a valid access_token, and the Graph API url becomes something like https://graph.facebook.com/10151651550011063?access_token=DFSDSGSFDGFGDSblabla
Then, in the Graph API object, you'll find the video download link under source.
Refer Below Link. Might help you
http://developers.facebook.com/docs/reference/api/video/
1/ You can get source video by api but it only in sd quality.
2/ If you need to get source video by api, make sure you know to get accesstoken by this way:
Go to https://m.facebook.com/composer/ocelot/async_loader/?publisher=feed
Search for EAAA... it is your accesstoken.
3/ https://graph.facebook.com/v10.0/(page/group/userid)_videoid?fields=source&access_token=your_accesstoken
example https://graph.facebook.com/v10.0/1389311341281276_2668264723385925?fields=source&access_token=your_accesstoken
finally you can get private video or public video from facebook by graph api
$idPage/feed?fields=message,link,created_time,type,name,id,source
source => will return url mp4 video post
You cannot download videos using api.
You can just get there links,likes,comments etc.