Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Loops are a type of control flow structure in programming in which a series of statements may be executed repeatedly until some condition is met.

learn more… | top users | synonyms (3)

0
votes
1answer
31 views

Infinite loop while login

Some of our users are stuck in infinite loop while login. A user already gave authorization for email. Our app wants to access the mail but cannot access. It redirects user to authorization page. But ...
-1
votes
1answer
202 views

Continue the loop if a Fatal Error is found in a Facebook publish stream script

I have the following PHP code: require 'facebook.php'; $facebook = new Facebook(array( 'appId' => 'XXXX', 'secret' => 'XXXX', )); $ids = array('1234','5678','1348','1476'); foreach ($ids ...
-2
votes
3answers
100 views

Can we run a loop in a column of mysql table? [closed]

Through php, I have to take input of user name and then search for the same in column named as useername of mysql table. If username matches, it looks for matching the password of the same row, so is ...
0
votes
0answers
122 views

Facebook API Loop and No Cookie in Chrome

I am trying to use the facebook connect on a website but I have some trouble on IE and Chrome. Basically I used this method : https://developers.facebook.com/blog/post/534/ using JDK for the button ...
0
votes
2answers
173 views

Splitting comma separated string of likes into smaller parts

What is the best way to split a comma separated list of 50++ numbers (FB page IDs) into smaller chunks and deal with them n at a time? The list will look like: ...
0
votes
1answer
90 views

Javascript function into a loop, Django app

In my Django app I display a list of facebook friends. I would like to associate a facebook invite button for each of those friends. For that I wan't to use a javascript function that allows me to ...
0
votes
0answers
86 views

Facebook Tab Application User Post Authentication goes into loop

I am trying to develop a Facebook tab application, and my application is hosted on 3rd party server. My application scenario is: User must authorize the application for which I am using the following ...
1
vote
0answers
172 views

Facebook connection loop internet explorer

i'm developping a Facebook application with C# using Nathan Totten C# SDK and Facebook SDK. I'm trying to get accesstoken from the Users by using many examples founded on SoF or others websites, and ...
0
votes
0answers
324 views

Facebook API Infinite Loop and No Cookie for IE and Chrome

I am trying to use the facebook connect on a website but I have some trouble on IE and Chrome. Basically I used this method : https://developers.facebook.com/blog/post/534/ using JDK for the button ...
0
votes
1answer
73 views

flash_as3_facebook_api: how to iterate over FacebookSession object that is returned by FacebookDesktop.login

in flashbuilder debugger mode, I can examine all the props/vals of the FacebookSession object returned by FacebookDesktop.login when I place a breakpoint in my loginhandler method. however, I cannot ...
3
votes
1answer
2k views

App authentication stuck in an infinite redirect loop

My app gets stuck in an infinite redirect loop, because $facebook->getUser(); always returns 0. I've read through many threads here on stackoverflow and other sites as well concerning similar issues, ...
2
votes
0answers
289 views

Looping error when opening Facebook-app login-window on my website

I'm trying to use the Facebook SDK and API to log users into my website, and it all works peachy aside from a looping console error. Unsafe JavaScript attempt to access frame with URL ...
1
vote
1answer
113 views

Javascript how to build loop with unconstant time of iterations

need to be consulted by JS jedi. Situation: I got array with USER_IDs and need to call social network function to post on their walls. So I need to launch wallpost function, listen to its answer and ...
0
votes
2answers
680 views

How to parse through FB Graph API friends list array for specific value, ID?

I successfully loaded the friends array containing more arrays into a variable. But how do I iterate through it to take only the id's out? I used: $friends = $facebook->api('/me/friends/'); It ...
0
votes
1answer
148 views

While loop iterating only once while using api to post on users wall?

I am using while loop to post on users wall through application. While loop executes only once and post on users wall once at a time. I wonder why this is happening. while($data = ...
1
vote
2answers
141 views

php api associative array

I'm trying to loop through an api call very quickly but I'm seeing very odd behavior with the following loop (doesn't loop through the entire array....writes only 1 or 2 records): Any ideas: $i = 0; ...
0
votes
0answers
66 views

How can I hide an element on my site from Firefox?

I am building a web page and I have included Facebook's Like button. Works great in all browsers but not in Firefox. When clicked in Firefox, it creates an endless loop of opening and closing a ...
0
votes
1answer
304 views

Facebook API - Using multiple requests in Rails Model

I have written an app that I am not happy with. Essentially it queries the Facebook API in a few ways: Gets a list of all posts Retrieves each post Retrieves each posts comments I can get a list ...
2
votes
2answers
9k views

Redirection loop problem at facebook iframe application

I do IFrame application for facebook. Problem is: any link inside it causes redirect loop Link is: http://mydomain/mypage?fb_sig=[what I got from $_GET['fb_sig']] (to test I link to the same page ...