Can we create iframe apps via the api? [closed] - facebook

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am adding app to fan page as a tab.I wanted to create many tab to my facebook page.Does I need to create diffrent app for that.Can we create app through code or any api?

An app can only be added one time to any given page as a tab. So you'll need to create an app for each tab you'd like to display.
At this time there is no current method of creating an app via code. There was previously a method with the old connect product but it seems to have become obsolete.

Related

Custom Facebook authorize dialog? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
This is a custom Facebook dialog? How to do similar? Are there an "official way" to do this?
See:
http://www.facebook.com/yazigi.oficial/app_352476968122012?ref=ts
I don't found nothing similar to this in the documentation and in the source code from example.
This is just the original Facebook Auth dialog, only used with parameter display_mode=async:
“async: For use only when loading a dialog via the JS SDK from within a Canvas or Page Tab App. Using async loads the dialog in a modal window. async is the default display mode within Canvas and Page Tab Apps.”
https://developers.facebook.com/docs/reference/dialogs/#display

Content from Website to iPhone App [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I've been creating iPhone applications for the past couple of months, and one question has always crossed my mind: how does one go about creating an app like Instagram or some other application that lets users sign up and log in? I know how to do this with a website (SQL), but how do you do it on the iPhone? General answers are perfectly fine. Thanks!
The simplest approach: use UIWebView to wrap the website.
If you prefer using native UI, you can use JSON to communicate with the server for user login part.

how to Include another application in my application? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
In my application i was supposed to include/access/bring another application which is installed in iPhone. I don't have the source code for the other application. I googled several references which says that i should include the source file of another application without ticking copy options. but the problem here is i don't have the source file of the application.
If you're hoping to "embed" another application so that it appears to be part of your own then you're going to be out of luck (i.e. this cannot be done) without the source.
If you'd like to launch another application (say facebook) then you can use URL schemes, there's a good reference here: http://wiki.akosma.com/IPhone_URL_Schemes
If you have something else in mind you'll have to rephrase the question as others have already said, it's not entirely clear.

MY app is not opened inside facebook its goes to my host [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Hello my app is not opened inside facebook canvas. if I click on my app it just opens my app's profile page.. how can I do this?
When you create an application you have to define its "App Namespace" in the developers app.
You can read more here.
Your application will get a url like this : http://apps.facebook.com/{your_app_namespace}
Once the user gets to that page - facebook will load your app inside an iframe.

Global facebook instance in iphone app [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I would like to have my app log users into facebook in a settings view and then save the information into userdefaults. When the app loads, it should log into facebook if the information is in userdefaults, and if not, continue operating normally without facebook functionality. Basically, I want one instance of facebook which is loaded at the beginning, and all the information used throughout every view in the app.
Is this possible?
Everything that I have seen so far shows one instance per view which is not what I want.
We do it all the time in our apps.
I typically create a Facebook singleton to manage the Facebook interaction and store the token in either NSUserDefaults or the Keychain, depending on the application.