Facebook App Wall Posting no longer showing in Facebook iPhone App

Posted by David Hsu on Stack Overflow See other posts from Stack Overflow or by David Hsu
Published on 2011-09-28T17:23:40Z Indexed on 2012/07/08 21:16 UTC
Read the original article Hit count: 357

I use the GRAPH API with django for Facebook wall postings. Since yesterday, the wall posts only show on the Facebook web app but not the Facebook iPhone app. I tried Yelp, and their postings still show up. How can I debug this? Anyone notice this issue with their Facebook connect? Is this a Facebook algorithm issue.

Code for Wall Post:

graph = facebook.GraphAPI(access_token)
        attachment = {"name": name,
             "link": link,
             #"caption": "{*actor*} posted a new review",
             "description": desc,
             "picture": picture }
        graph.put_wall_post("",attachment)

© Stack Overflow or respective owner

Related posts about python

Related posts about objective-c