I'm working on a music player for iPhone and I'd like users to be able to post songs to their Timelines. I have Facebook Connect working and I've registered Open Graph objects and actions with Facebook, but I can't figure out how to create/post an object and action from iOS.
Facebook gives me the following code, but I don't know where to use it for their iOS SDK.
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# MYAPPNAME: http://ogp.me/ns/fb/MYAPPNAME#">
<meta property="fb:app_id" content="xxxxxxxxxxxxxxx" />
<meta property="og:type" content="MYAPPNAME:song" />
<meta property="og:url" content="Put Your Own URL Here" />
<meta property="og:title" content="Some Arbitrary String" />
<meta property="og:description" content="Some Arbitrary String" />
<meta property="og:image" content="http://ogp.me/logo.png" />