|
More site info...
Connect - General | Forum profile
|
|
Forum profile page for Connect - General on http://forum.developers.facebook.com.
This report page is the aggregated overview from a single forum: Connect - General, located on the Message Board at http://forum.developers.facebook.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "Connect - General" on the Message Board at http://forum.developers.facebook.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on Connect - General:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
57
|
259
|
630
|
|
Post:
|
75
|
433
|
1,044
|
|
|
Connect - General Posting activity graph:
|
Top authors during last week:
user's latest post:
Question regarding the proper...
Published (2009-11-28 16:39:00)
This is what I would like to achieve: Only if someone is logged in (via Facebook connect) and has not already been asked to give extended permissions, I would like to pop up the dialogue box. Does anyone know how this works on the backend. such as, if you use the XFBML code, when does this code fire? Do I need to put in my own conditions to prevent it from simply firing on each page load? Thanks for your assistance.
user's latest post:
Facebook connect sending user to...
Published (2009-12-02 04:00:00)
try to use FB.Connect.requireSession to get allow access dialog instead + read docs about this method
user's latest post:
FB.HiddenContainer.get() is null...
Published (2009-12-03 08:45:00)
Thanks, as suggested I just hardcoded in the missing div and it seems to have resolved the issue.
user's latest post:
Is there a way to use input boxes?
Published (2009-12-02 17:11:00)
Hawkthalas wrote: So there is no way to get that data into an external database? Always FB stores input data? No, I didn't say that. The second paragraph of post #4 talks about storing data externally, and the AJAX I mentioned in post #2 could easily be used to store data on the server (BTW make sure you don't store data that you get from the API, such as the user's name -- that's against TOS). Hawkthalas wrote:...
user's latest post:
FB connect on multiple domains
Published (2009-11-26 05:59:00)
Any news on this? Interested in a clean solution too (e.g.: www.domain.fr , www.domain.es , www.domain.de ...)
user's latest post:
Profile Photo Caching (Privacy...
Published (2009-11-28 18:20:00)
Scratch that, it ends up causing all sorts of issues. It seems having two seperate facebook objects tends to confuse it... So still stuck!
user's latest post:
permission denied error with...
Published (2009-11-25 08:50:00)
Hi, I am trying to publish message on a page using "stream_publish" $fb->api_client->stream_publish($message, null, null, $pageId, $userId); $userId was the admin for the page not a fan ..; this publishes my message on page wall as Fan but not page / admin. then i tried $fb->api_client->stream_publish($message, null, null, $pageId,$pageId ); it gives me a permission denied error can any one sugest...
user's latest post:
App Not Updating
Published (2009-11-28 16:05:00)
Forget updating, I deleted it and tried to start over and now I can't even get as far as naming it. I guess I'll just walk away from my computer before something really bad happens : ) Tomorrow's another day.
user's latest post:
Pull in the same data as the...
Published (2009-12-01 21:12:00)
i'm guessing you want to get a user's live feed...look into the stream.get method of the stream fql table. links: http://wiki.developers.facebook.com/ind … Stream.get http://wiki.developers.facebook.com/ind … _%28FQL%29 http://developers.facebook.com/docs/?u= … stream_get (javascript method - for connect and iframe) hope this helps.
|
|
|
|
Latest active threads on Connect - General::
Started 2 days, 17 hours ago (2009-12-03 09:57:00)
by socialmedia007
Just checked this issue, no idea (: , hope someone will answer soon Jane
Started 4 days, 6 hours ago (2009-12-01 21:12:00)
by The Reaper
i'm guessing you want to get a user's live feed...look into the stream.get method of the stream fql table. links: http://wiki.developers.facebook.com/ind … Stream.get http://wiki.developers.facebook.com/ind … _%28FQL%29 http://developers.facebook.com/docs/?u= … stream_get (javascript method - for connect and iframe) hope this helps.
Started 5 days, 17 hours ago (2009-11-30 10:22:00)
by lolBucket.com
Hi arsenyk, I'm having the same problem. I was able to share my video pages and have the title, description and an image of the video show properly until a few days ago. I had this problem before and I was able to fix it by putting my title and description tages higher in the page, just below the <html> tag. Maybe this will work for you. What is your blog's URL? To anyone that can help, ...
Started 3 days, 23 hours ago (2009-12-02 03:57:00)
by anatolyl
try to add the following to your page as a workaround Code: <div id="FB_HiddenIFrameContainer" style="display:none; position:absolute; left:-100px; top:-100px; width:0px; height: 0px;"></div> hope this helps
Started 3 days ago (2009-12-03 02:34:00)
by jamespatterson
I had this happen to me before on my site. I found it worked when I deleted my browsing history. It still happens on my site too so it would be interesting to find out what's causing this and how to stop it. James
Last edited by jamespatterson (Yesterday 02:34:48)
Started 5 days, 3 hours ago (2009-11-30 23:52:00)
by The Reaper
some good questions there. to start with, you may want to forget about profile boxes as they're being deprecated. just worry about tabs. as for the 'add to profile' button for it, we're all waiting. but, the actual tab is like an fbml canvas page (with some limitations). you just create a page on your server that facebook pulls when someone views the tab. your feed (stream) idea is exactly ...
|
|
Hot threads for last week on Connect - General::
Started 3 days, 11 hours ago (2009-12-02 15:46:00)
by dburns
Really depends on what you mean by "work out that data". A calculator could be done via FBJS ( http://wiki.developers.facebook.com/index.php/FBJS ). If you need to use Facebook-specific data, then you could use AJAX calls to your server, and your server would look up and return that data (see AJAX section on same page).
Started 1 week, 1 day ago (2009-11-27 19:10:00)
by anatolyl
You can use uid="loggedinuser" in XFBML.
Started 1 week ago (2009-11-28 17:46:00)
by PHP Extra
Ah, I think I've sorted this. If you create a new Facebook object, and use 'set_user()' as null, it appears to work. Heres how I've done it: Code: $fb = new Facebook($key, $secret);
$fb->set_user( null, null);
$fb_data = $fb->api_client->users_getInfo($uid, 'pic_square'); This seems to work perfectly for grabbing profile data as if from a non friend perspective, and respects all ...
Started 4 days ago (2009-12-02 02:50:00)
by richhiggins
for added context, here's my fb connect login code: <a href="#" onclick="FB.Connect.showPermissionDialog('email',f unction(){document.location.href = '/users/login_facebook';}); return false;" >
Started 3 days, 23 hours ago (2009-12-02 03:57:00)
by anatolyl
try to add the following to your page as a workaround Code: <div id="FB_HiddenIFrameContainer" style="display:none; position:absolute; left:-100px; top:-100px; width:0px; height: 0px;"></div> hope this helps
Started 1 week ago (2009-11-28 08:00:00)
by geneellis
Ok, so no one answered my question, but I figured it out thought it was good karma to post the solution. Basically I moved all the cross domain information to the top of the page (right below the <body> tag. I also moved the facebook javascript library code there too. Once I did that I used a combination of <div id""> and Javascript getelementbyid and Javascript innerHtml to write the XFBML code...
Started 1 week ago (2009-11-28 16:05:00)
by whiwo
Forget updating, I deleted it and tried to start over and now I can't even get as far as naming it. I guess I'll just walk away from my computer before something really bad happens : ) Tomorrow's another day.
Started 4 days, 6 hours ago (2009-12-01 21:12:00)
by The Reaper
i'm guessing you want to get a user's live feed...look into the stream.get method of the stream fql table. links: http://wiki.developers.facebook.com/ind … Stream.get http://wiki.developers.facebook.com/ind … _%28FQL%29 http://developers.facebook.com/docs/?u= … stream_get (javascript method - for connect and iframe) hope this helps.
Started 5 days, 17 hours ago (2009-11-30 10:22:00)
by lolBucket.com
Hi arsenyk, I'm having the same problem. I was able to share my video pages and have the title, description and an image of the video show properly until a few days ago. I had this problem before and I was able to fix it by putting my title and description tages higher in the page, just below the <html> tag. Maybe this will work for you. What is your blog's URL? To anyone that can help, ...
Started 3 days ago (2009-12-03 02:34:00)
by jamespatterson
I had this happen to me before on my site. I found it worked when I deleted my browsing history. It still happens on my site too so it would be interesting to find out what's causing this and how to stop it. James
Last edited by jamespatterson (Yesterday 02:34:48)
|
|