I'm trying to add facebook opengraph functionality to my native iphone app. The goal is to post to facebook timeline when the user of the iphone app uploads an image to the database. I don't need it to do anything sophisticated, just use the opengraph api to call a opengraph action to a url object.
My facebook app is set up.
I use this code on my website to post to the facebook timeline:
<script>
function postFB(userid, stokeid){
var url = "http://www.domain.com/profile-stoke.php?pid="+userid+"&sid="+stokeid;
postAction ('stamp','passport',url);
};
function postAction( action, object_type, object_url ){
FB.api('/me/[APP_NAME_SPACE]:stamp', 'post', { passport : object_url },function(response){
if (!response || response.error) {
alert('Error occured' + action + '?' + object_type + '=' + object_url);
} else {
alert('Post was successful! Action ID: ' + response.id);
}
});
}
</script>
I'm looking to add the same functionality in xcode/iphone app.
The logic of my app is set up that when the user uploads a picture to my database, the ios app calls an api on my web server via NSNetworking.
The api then uploads the information to the database which sends a "success" code back to the app.
QUESTIONS:
1) What is the best way to implement the same functionality in the code above to the iphone app?
2) Does the code posting to facebook timeline have to be on the iphone app or can it be done in the web api?
3) Will I have to implement a facebook log-in or will the users pre-approval of the facebook web app allow the functionality on the iphone? Basically, if the user already approved the web-app will they need to again log in on the iphone?
EDIT:
I saw this code:
[[delegate facebook] requestWithGraphPath:@"me/YOUR_APP_NAMESPACE:YOUR_ACTION_NAME" andParams:[@"YOUR_OBJECT_URL" forKey:@"recipe"] andHttpMethod:@"POST" andDelegate:self];
from here: Creating an FB Open Graph Object via iPhone SDK
Would I just inport the facebook sdk into my app and then add that line of code?
Thanks for your help.