facebook

Facebook Connect subdomains with unique connect and callback URLs

Like most good developers I have a separate testing environment for my web app. For example, I have www.test.example.com which is the testing site and the production site is www.example.com. I have set my Base Domain to example.com but how do I set the connect URL so that it goes to my test site when I login from the test site? Do I nee...

Android application chrashes after "share" intent

Hi, My app offers a "share/tell-a-friend" function. When the "share" button is pressed the following method is being called to open a list of apps, which can perform the action (Eg. Gmail, Twittroid, Facebook...): public void share() { Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND); shareIntent.setType("text/...

css3 in facebook app

this doesn't work in a facebook application? q:before { content: '\00AB'; color: #FF0000; } q:after { content: '\00BB'; color: #FF0000; } ...

Adding a Fan Button

Is there any way to add a "Become a Fan" button to my page or an application? I know there is no FBML code for it, but is there any URL for it? ...

Why session is being automatically cancelled on FBJS?

here is the code FB.ensureInit(function () { var session = FB.Facebook.apiClient.get_session(); FB.Connect.requireSession( function(){ console.log('connected'); var fbml = getIviteForm(); var dialog = new FB.UI. FBMLPopupDialog("Weblings Invite", fbml) ; ...

Facebook Connect How to get userId after sign in from face book connect

i am using facebook connect it is working fine but what i want now is i want to get the information of the currently logged in user. like name, email etc. I am working in asp.net 2.0 Regards ...

Facebook javascript in address bar, possible to replicate?

This is my first experience with stackoverflow and I'm afraid my question asks of a lot for a first. I was looking at this thread: http://stackoverflow.com/questions/2634159/javascrypt-in-the-adress-bar-is-this-malicious and as you will see SLaks has very kindly deobfuscated the javascript and left us with what appears as the Javascript ...

css file not getting updated

the font of the content of my facebook app keeps getting italicized even when i've removed the italics from the css file. if i make minor changes in the css file and upload it to the server, the firebug shows the unedited previous css file and hence, the app keeps showing unformatted content. what exactly is going wrong here? i made a ...

admin user publishing/addcomment to page stream

I have a Fan Page that I want my application to publish() and addComment() to. The application can post and comment, however, when I addComment() the wall displays the attribution on the wall as that of the Fan Page. And when the application publish() to the Fan Page it attributes the post to the user that logged and not the Fan Page. ...

showing content in profile box from another file

i'm stuck at this facebook application, not knowing how do i go ahead. for the canvas, the app works quite perfectly. i've two pages, quote.html and quote.php. in quote.html, quote.php [which gets the quotes from the database] is called through ajax which displays a quote randomly for 10 secs. however, for the wall tab/profile box, i ...

Social Media Aggregator, Global Update via Powershell

Does anyone know of a way to interface with a Social Media Aggregator using Powershell. For Instance, I would like to update my global status on digsby using Powershell. Digsby would then fan the message out to Facebook, Myspace, Twitter, Etc.. I am open to using any Social Media Aggregator that can do this.. Digsby, Seesmic, Ping.fm Tw...

Facebook iPhone application: root view animation style

Hello, I'm working on an application that has the same layout as Facebook. I have several icons on the home screen and would like to to make my viewController appear like when one of the icons are tapped. Any idea on how it works? ...

Adding sidebar to a Facebook FanPage

I am viewing the Barcardi fanpage (http://www.facebook.com/home.php?#!/bacardi?v=wall&ref=ts) and I see on their wall tab they have a sidebar area they place an advert (probably html) - http://screencast.com/t/ZGE2MDhlMDM. Thoughts on how I can get this for my fan page? ...

pass facebook connect session from php to javascript

I'm authenticating via PHP: // the php facebook api downloaded at step 3 require_once("facebook-client/facebook.php"); // start facebook api with the codes defined in step 1. $fb=new Facebook( 'XXXXXXXXXXXXXXXXXXXX' , 'a3eaa49141ed38e230240e1b6368254a' ); $fb_user=$fb->get_loggedin_user(); var_dump($fb_user); And the session is cre...

Facebook news feeds from a specific date and time

Hi, is there a possibility on facebook to show only the news from a specific date or time without clicking more times on the "older posts" link on the bottom of the page? For example, I found an interesting article yesterday, but I didn't have time to read it. Today I can't find it, because there are thousands of posts since then. May...

How do I post dynamic information to Facebook from Flash?

I am building a Flash site and I want to be able to allow the user to post dynamically produced information to their Facebook wall, but I can't find out any information within the Facebook developers documentation. Its simple enough in Javascript/HTML: <script type="text/javascript"> function callPublish(msg, attachment, action_link) ...

Is it possible to avoid loading XFBML javascript when using Facebook Connect API features

The dependency graph of the Facebook libraries described in the FB_RequireFeatures documention specifies that XFBML is dependent on Connect, but not vice versa. The suggested usage they give is something like this to fire an event handler for a login button. FB_RequireFeatures(["Connect"], function() { FB.init("API_KEY", "xd_receive...

FBML is not rendered in Facebook App in iframe - please help

I'm developing an Facebook Application in PHP. It's loaded as an iframe and not as FBML. The normal interaction with Facebook works. For example the following code gives the username: $facebook = new Facebook($config->appapikey, $config->appsecret); $user_id = $facebook->require_login($required_permissions = 'email'); echo $user->name; ...

FBConnect for iPhone: sessionDidNotLogin, sessionDidLogout, session didLogin not called the second time I load a view.

My problem is very similar to this question, however I am posting a new one, as the answer to the aforementioned does not seem to solve my problem. I have a multiview application - the first view is where the user logs in to Facebook, and the second where he picks an image and uploads it there. The first time the app runs, everything wo...

Debug gwt inside facebook iframe

I'm trying to debug my gwt 2.0 apllication that runs inside facebook iframe. When i use 'http://127.0.0.1:8888/index.html?gwt.codesvr=127.0.0.1:9997' as "Canvas Callback URL" my app doesn't loading, but when i compile it and use 'http://127.0.0.1:8888' it works perfectly. ...