Facebook App Wall Posting no longer showing in Facebook iPhone App
- by David Hsu
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)