I have an app that lets the user create a custom-made greeting card (a big image) and send it to a facebook friend who has their birthday / another occasion on that day. I want to allow my user to post the generated greeting card image on the other friend's timeline.
- Since feb 2013, developers are not allowed to post on other user's wall using
/feed
(stream.publish
), the documentation states it is only allowed using the feed dialog (sdk pop-up).
How do I allow a user to post a big image on a friend's timeline from an iOs app without using the sdk's send dialog?
fb:explicitly_shared
orimage[0][user_generated]
are used) - something I do not want. Also, it raises using mention tagging, or message tagging (i.e using "@[uid]" in the message body), both tagging methods are not intended for this exact purpose. Any Ideas on this approeach? – RabinDev