I am implementing a facebook connect based application, and when I use
$facebook->require_login()
I am redirected to the application page, after being presented with a login page on facebook. Now, when the application page loads, a "auth_token" parameter is appended to the end, e.g:
http://example.com/some_path/?auth_token=892a70ff0e...
I have a mobile application that I'm using with Facebook connect. I'm having trouble getting an offline_access session key after a user has granted extended permissions.
Here's the user flow:
User goes to my site for the first time
I send them to m.facebook.com/tos.php? and pass my api key and secret
The user logs in using Facebook...
i have been on this for the last 2 days with no result.
i am running my facebook app on my localhost with port-forwarding method.
i know my server setup is working fine as i can see the logs on the django runserver and dyndns log as well.
django is properly responding to calls as well.
the problem is as soon as the app authorizes with ...
we have a facebook app and every time a user invites a friend the application redirects to the "action" URL but it's always facebook inside of an iframe. For the life of me I've tried every combination of URL's for the action, but it just won't break out of the frame.
Any idea how to avoid this?
Thanks,
Chad
...
My requirement was to update members status from my site, i am also thinking about displaying their friends photos and their last status update.
I have looked all over the docs and cant decide which works for my need. RESTful API, JavaScript API, FQL, XFBML, FBML, FBJS ?? whcin one works best? or best way?
It should be like, when they ...
Hi,
In light of http://igigi.baywords.com/rockyou-com-exposed-more-than-32-millions-of-passwords-in-plaintext/,
I am just curious what kind of authentication systems are in place for big players such as facebook, google, myspace?
Are they using LDAP or just database?
Regards
...
can someone show me PHP code for
1) updating user status
2) display friends pics
3) display friends last status
script to should ask for authorization only once, must save the session and how to make it automatically connect when they got back later?
...
I have a problem regarding opening a new dialog box.
Which encounter an error like "MOCK AJAX ERROR:".
I have writtten below code for dialog box:
<fb:dialog id="my_dialog" cancel_button=1>
<fb:dialog-title>My Little Dialog</fb:dialog-title>
<fb:dialog-content>Do you like my little dialog?
<form id="my_form"> <p/>
...
Hi all,
How we can define JS function on inside ? I tried to load file javascript on the end tag , but I still can't call the function from javascript file.
Here the FBML tag
<fb:serverfbml>
<script type="text/fbml">
<fb:fbml>
<a href="#" id="this" onclick="do_colors(this); return false">Hello World!</a>
<script src=...
I'm using the .net facebook api to integrate a web app with facebook. I would like to allow users authenticated to my site to be able to post photos/videos/posts to a facebook page that I control. In some cases I don't want this to be posted through their facebook account, but instead via some generic account that I'll set up. Is there a...
I would like to show the following links (I think they are called badges) on my homepage.
Assume my website is called 'abc'
1). An image saying 'abc' on FaceBook, become a fan (and display a set of random pictures of some of my members)
2). A 'follow us' on twitter link
3). Ability to publish changes to my site (e.g. new news etc) to ...
In my facebooker ruby rails app i can't seem to get a user session. It works outside the tab however.
class TabController < ApplicationController
ensure_authenticated_to_facebook
ensure_application_is_installed_by_facebook_user
def index
@user = session[:facebook_session].user
end
Error is something like:
Filter chain halted as [:...
How we can use Face Book Connect and Sign in with Twitter in asp.net website. Please provide if you have any sample application
...
HI,
Can anyone tell me how to publish a story or a news feed on a user profile using pyfacebook, i have used
fbml = "<fb:wide><fb:subtitle>This is the subtitle</fb:subtitle>"
fbml += "<fb:if-is-own-profile>This is your profile.<fb:else>This is not your profile.</fb:else></fb:if-is-own-profile></fb:wide>"
request.facebook.profile...
How to get the infinite session key using facebook REST API (PHP)?
can someone show me a step by step code/procedure?
Thanks a lot
...
I'm using a Facebook application that has a rich set of information that I'd like to get at offline. To do this, I essentially need to read the infromation from the web pages into my own database. Obviously, I'd prefer not to have to save pages manually and let my application read the pages and pull the relevant details from them. Unfort...
Hi,
I'm using Django/Python , I need to ask the user for permission to let me put feeds ( ideally oneliners which was not working so I thought to use full streams) into the user profile.
Would you like to receive email from our application?
This is giving me a hyper link which I click and it shows me the permission box. What is need...
include_once 'facebook.php';
$fb = new Facebook('api_key', 'secret');
$user = $fb->require_login();
echo $fb->api_client->user;
echo $fb->api_client->session_key;
Whats wrong with the above code? when i first go to the page , it takes me to the facebook for login, after i login, its falling in infinite loop. how can make it pri...
Is it possible to use facebook php api and crontab to create status updates? Crontab would run the php code that sends the status update to facebook.
The problem for me is the login part [$facebook->require_login();]. Crontab can't login, so can i send the login information (username and password) to facebook as well?
my example code:...
Facebook requested that I change my design of my application because certain functions become deprecated.
Now I have to ask the user for "publish_stream" permission when he logs in.
When the user allows the permission, he is redirected to the website and everyone's happy.
When he doesn't allow -> he is being requested again and again u...