in Education by
When i use graph api to post a picture, everything is ok. The photo is right in the album. The problem is that the picture is not mention on the wall. It's just include in the album with nothing on the wall. I use basic code like that : $facebook->setFileUploadSupport(true); $file = "@".realpath(PIC); $result = $facebook->api( '/PAGE_ID/photos/', 'post', array('access_token' => $access_token, 'type' => 'status', 'message' => stripslashes(MESSAGE), 'image' => $file ) ); Do you know how to force the picture and the message to appear on the wall as a status? JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
The only workaround could i figure out is to get Wall Photos album's ID and post photo to that album to appear on wall.. Unfortunately there is no easier way to force it out. Here is the sample code: $result = $facebook->api('/'.$pageID.'/albums/?access_token='.$access_token, 'get' ); $albumArr = $result['data']; $albumID = 0; for($j = 0 ; $j < sizeof($albumArr) ; $j++) { if ($albumArr[$j]['type'] == 'wall') { $albumID = $albumArr[$j]['id']; } } $result = $facebook->api('/'.$albumID.'/photos/', 'post' , array('access_token' => $access_token, 'type' => 'status', 'message' => stripslashes(MESSAGE), 'image' => $file ) );

Related questions

0 votes
    The major components of a Graph include all except _______....
asked Jan 26, 2021 in Technology by JackTerrance
0 votes
    This is a cURL function that can send or retrieve data. It should work with any PHP app that ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 4, 2022 in Education by JackTerrance
0 votes
    My application sends email using Microsoft Graph. We followed the documentation, this was working as expected for ... for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 17, 2022 in Education by JackTerrance
0 votes
    Give scientific reasons. Though tortoise lives on land as well as in water, it cannot be included ... ,Science proposed by,electromagnetic theory engineering physics,Science nptel...
asked Nov 7, 2021 in Education by JackTerrance
0 votes
    Though Microsoft Teams is integrated with SharePoint (for file-sharing), can people still have access to a Team without being allowed to collaborate on documents?...
asked Mar 10, 2021 in Technology by JackTerrance
0 votes
    I'm writing an iPhone app with Cocoa in xcode. I can't find any tutorials or sample code that ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 19, 2022 in Education by JackTerrance
0 votes
    I'm writing an iPhone app that takes a photo and then uploads it to a server. How do I upload a ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 18, 2022 in Education by JackTerrance
0 votes
    Write about the Berlin Wall (Division of Berlin). Select the correct answer from above options...
asked Aug 3, 2022 in Education by JackTerrance
0 votes
    Sketch, labell and classify. Wall Lizard Select the correct answer from above options Science questions ... proposed by,electromagnetic theory engineering physics,Science nptel...
asked Nov 7, 2021 in Education by JackTerrance
0 votes
    The cut off wavelength of the TE10 mode having a broad wall dimension of 5cm is (a) 0 ... theory proposed by,electromagnetic theory engineering physics,electromagnetic theory nptel...
asked Nov 6, 2021 in Education by JackTerrance
0 votes
0 votes
    How can a nucleus lose electrons ( β β -particles) even though free electrons are not present in it? Select the correct answer from above options...
asked Jan 2, 2022 in Education by JackTerrance
0 votes
    How to join three sources using joiner? Explain though mapping flow....
asked Mar 28, 2021 by JackTerrance
0 votes
    I would like to use ShellExecute in my C++ program to force the opening of a tiff image with ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 26, 2022 in Education by JackTerrance
0 votes
    radha is a professional photographer and is working with the multinational photo printing company which device would radha ... forms? Select the correct answer from above options...
asked Dec 24, 2021 in Education by JackTerrance
...