|
Hi, the iframe app that I have cause double facebook header to show when user is prompted to login or install.
This code basically caused it. FB.Facebook.requireLogin(function(exception){ });
How can I prevent that? I saw blog post about using javascript...
Started by teepusink on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Hey Gaurav, the issue is that the requireLogin function is from the facebook api.
Solve your problem.
|
|
I m developing a blackberry app which requires facebook login. can i login to facebook via my app without stopping the app in the middle. means can i login to facebook in parallel with my application, without interrupting it.
Started by anna on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Facebook API documentation)..
You would need to make your program multithreaded, and handle the connection to facebook in another (cf.
|
|
I have a reasonable workflow for developing an iFrame app for Facebook. It's reasonable because I can test the app on localhost with a local Apache in any one of a myriad of IDEs that support HTML, CSS, and JavaScript (Visual Web Developer, NetBeans, ...
Started by Nosredna on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Facebook restricts sandboxed apps so app....
When I was doing FB development, I had one test a sandboxed app that I use to deploy test versions of the app.
And test your Facebook app on a local dev server.
|
Ask your Facebook Friends
|
What's the best open source Java library to add Facebook functionality to a Java web app?
Started by Hula on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Since facebook stopped supporting a Java API, the mantle of trying to provide one has been taken up by a google coding group:
http://code.google.com/p/facebook-java-api/
The API is provided under.
|
|
Am in the process of developing some app for Facebook using Django! I've started first by building the app in Django and its shaping up pretty well, now am wondering how can I make it a Facebook app.
I would really appreciate real world example for Facebook...
Started by Gath on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It also includes references to more resources..
Django based application on facebook.
|
|
I saw the new iPhone apps and it is superb. They have nearly more than 9 sections and they have given good navigate view. They have removed tab bar controller and instead of they have given one good navigate view.
Does any have seen this new Facebook ...
Started by iphone dev on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The first view could.
The developer of the Facebook app and was derived from the Facebook app itself.
|
|
How can I create a "person photo" button like the one in contact info or in the Facebook app? (grey and rounded border with a small radius and an image that is cropped inside it)
Edit:
It must obviously work for all photos, not just one that I prerender...
Started by Jaka JanĨar on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Create it as an image (like "person.png"), then load it up like this:
UIImage *personImage = [UIImage imageNamed:@"person.png"]; [[myButton imageView] setImage:personImage]; //where myButton is a UIButton of type UIButtonTypeCustom
Here you (I :P) go... .
|
|
I want to implement Facebook connect login for my Django site and I've checked the already existing apps.
So far, I have found Django-Socialauth , django-socialregistration , and django-facebookconnect for this purpose.
The question is which one to choose...
Started by Hellnar on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Our app also works with openid and password login, but the openid part, if anyone might be interested in "anything-signin" ....
Hi Take a look at fbconnect app that we (actually, Hernani, a guy on our team) put together django-registration .
|
|
I have a simple iframe facebook app. I need the app to post content to the current user's wall. I'm doing everything in PHP and JS. Currently, the only facebook-specific PHP I have is to get the current user's ID, and the only JS I have is to get the ...
Started by Gary on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you embed the standard Connect code in an iframe app then it'll set up the user's session transparently by taking parameters from Facebook's....
You were looking in the right place - the Facebook Connect libraries are what you need.
|
|
I'm going to start trying to build a facebook app soon for one of my sites, and have no clue where to start. Was wondering if anyone had any links to a step by step guide?
Started by leen3o on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
But here is a good simple Example on Using Facebook Developer Toolkit?projectSearchText....
From the Facebook wiki
When a user has added your app they can see a link to your app in the Publisher of toolkits available on CodePlex.
|