android - How to add caption while upload video on Facebook using the 3.0 version of the SDK. -
i'm using 3.0 version of sdk upload video on facebook android there's helper method uploads videos doc link :- https://developers.facebook.com/docs/reference/android/current/request#newuploadvideorequest(session,%20file,%20callback)
problem didn't add caption of video. how add caption video ???
see videos doc: https://developers.facebook.com/docs/reference/api/user/#videos
you can set "title" , "description" parameters, this:
request request = request.newuploadvideorequest(...); bundle params = request.getparameters(); params.putstring("title", "your title here"); request.setparameters(params); request.executeasync();
Comments
Post a Comment