According to the Facebook documentation, if we have publish_stream permission, we should be able to post content without requiring the offline_access permission. Does this apply to posting photos to a user's photo library?
In our Canvas app, we store the user's oauth token and are able to post to the user's wall with no problem. However, when we try to post photos to that user (using a POST to /user id/photos) it usually works. When it fails we get:
{"error":
{"message":"A user access token is required to request this resource.",
"type":"OAuthException"
}
}
TLDR: Are we wrong in thinking that publish_stream covers posting to user's photo library offline despite Facebook's documentation?