php - how to send daily post on facebook? -
hi please if knows tell me how send daily post application user's wall using facebook application. need php script how post message user wall.
thanks
this question supposed asked on stackoverflow
however, facebook documentation has php example this. can use php sdk this.
for publishing user's wall app need have publish_stream extended permission , can issue post request http://graph.facebook.com/[username/userid]/feed
like:
curl -f 'access_token=...' \ -f 'message=hello, arjun. new api.' \ https://graph.facebook.com/arjun/feed
Comments
Post a Comment