Embedding Facebook page in to an ios app - iphone

Hello fellow members,
I am currently developing an app which needs to have a Facebook page embedded inside it I have looked at the Facebook SDK and cannot seem to find a way of doing this.
Any suggestions or thoughts on this would be really appreciated
Thanks
Tom

Put a UIWebView in there and load an NSURL inside of it, with the URL being the address of your page.

Related

Facebook Fanbox widget in iphone

can any one help me out for "Integration of Facebook Fanbox widget" into an iPhone how can i integrate facebook fanbox into my iphone application? any suggestion or help and code will be appreciated
i know about this link but how to integrate this for iPhone app that i don't know
https://developers.facebook.com/docs/plugins/like-box-for-pages/
Thanks in advance :)
Well, as you haven't provided a great deal of information about how you would like to achieve this, all I can suggest is going to the link you listed above and using the tool to generate the html code you need.
Then create a uiwebview on your viewcontroller and use
[webView loadHTMLString:html];
Where webview is the webview you added and html is an NSString with a value of the code facebook provided. Alternatively create a local html file that has the facebook code in it and load the file into the webview.

creating a simple static app [facebook app]

I want to create a simple app for facebook, something like axa insurance
They have a folder competition, where you click on that folder which then displays an image which you can share. Any ideas how to do this? I have no idea from where to start. Can anyone provide any assistance or any tutorials on it? it would be highly appreciated.
You first need to create page tab app here: http://developers.facebook.com/
Facebook app are now a simple iframe pointing to whatever you want!
A couple of details:
you should have an ssl certificate for https user (otherwise it'll
give a warning when the user will be on your tab app)
Adding the app to your page is not really intuitive, take a look over here: http://developers.facebook.com/docs/reference/dialogs/add_to_page/ - under Direct URL Example to know how to do it!
Here's a tutorial about it
http://query2arijeet.com/2012/02/16/installing-your-iframe-application-on-your-fan-page-2012-iframe-facebook-apps/
You can google around "create facebook app for fan page 2012" or something like that!

Orkut/Flickr Framework for Objective-C

I am aware of Google+, Facebook and Twitter framework in iPhone. But for my new app requirement is that user should be able to post via FB/Twitter/G+/Orkut/Flickr.
Is there any such framework for Orkut/Flickr as opposed to FB/Twitter/G+ Or, do i need to redirect user to Orkut/Flickr and placing it in UIWebView as an traditional practice in webview.
Thanks for any help in advance :).
Did you even search for this on google:
Flickr: http://www.flickr.com/groups/api/discuss/72157616815681140/
Direct link to the library: https://github.com/lukhnos/objectiveflickr
Orkut API: https://developers.google.com/orkut/

facebook like page with url to application

I have been trying to create a Facebook like-page with a like linke/button to my iphone application. Like Camera+ (http://www.facebook.com/CamPl.us). I just can't find anyway how to make a page like camera+ - Any help?
I found out that this feature is outdated or disabled from facebook :-/
https://stackoverflow.com/questions/7273559/how-do-i-change-download-app-button-url-for-facebook-app

Embedding RSS and Twitter onto Static FBML?

I've been asked to build a facebook fan page, that displays the latest RSS from a blog and the latest tweets from an user.
Something just like this:
http://www.facebook.com/ibmargentina?v=app_223277347226&ref=ts
I already know the basics for working with FBML, but I can't figure how can I display external data...
Any tips would be greatly appreciated.
Thanks in advance..
Here you go: http://forum.developers.facebook.com/viewtopic.php?pid=129641
Here is another how to: http://www.howtoforge.com/rss_facebook_app_php_p3
Check out the discussions, everything you want to know is there.
http://www.facebook.com/apps/application.php?sid=59c8a2bba844922b5153efc9b9eba237&id=4949752878&ref=s
Facebook has put up a new guide for apps and pages at http://developers.facebook.com/docs/guides/canvas that is fairly helpful.
One thing that was a bit elusive to me at first was that you have one page that serves the canvas and then you have a second page (they recommend a subdirectory /tab) that serves the page content. So you can have a working app and canvas page and still not have it show up as a tab when you add the app to your "page".
(I know this is an old question, but I found it so I figure others might too)