I am developing a FB app which tries to post an image on selected Friend's wall.
App already have publish_stream approval.
Below is the related code for posting image on friend's wall:
FacebookType publishPhotoResponse = facebookClient.publish(friendID+"/photos", FacebookType.class, binaryAttachment , postParamsArray);
But code is giving below exception:
com.restfb.exception.FacebookOAuthException: Received Facebook error response of type OAuthException: (#240) This user isn't allowed to upload photos to this object's wall
I have checked my friend's Timeline & Tagging settings and its selected as:
Who can post on your Timeline - Friends
I have done some googling but still not sure what am I missing ? Request you to help. Thanks !
P.S.: When user first time comes on app, publish_stream is requested.
As per my understanding, that is sufficient through out the app life-cycle.
Or do I need to request access_token with publish_stream access every time ?
