EllisLab text mark
Advanced Search
8 of 11
8
   
Poll
Should I make the repository Spark friendly?
Yes 5
No 2
Branch off and create a "full" branch. 3
Total Votes: 10
You must be a logged-in member to vote
Facebook Ignited
Posted: 17 August 2012 12:16 PM   [ Ignore ]   [ # 111 ]   [ Rating: 0 ]
Joined: 2012-05-02
29 posts

It did, I saw them on the right side of the screen, but when I print_r the $this->fb_me none of that additional stuff is added on, such as user_groups. I did notice birthday, email. Seems to be basic stuff.

 
Posted: 17 August 2012 12:28 PM   [ Ignore ]   [ # 112 ]   [ Rating: 0 ]
Avatar
Joined: 2010-08-21
77 posts

You need to specifically ask for the rest using the api() method.

 Signature 

Dark Prospect Games, LLC | Facebook Ignited on GitHub

 
Posted: 17 August 2012 10:42 PM   [ Ignore ]   [ # 113 ]   [ Rating: 0 ]
Joined: 2012-08-17
4 posts

Haiii….. great library…. im very curious to develop my project with this… smile
i just wanna to ask some basic question…

1. i cannot understand how the welcome page like button is not showing that such as “You like this” if i click like… is there some config missed or mistype ?
My config

$config['fb_appid''###';
$config['fb_secret''###';
$config['fb_canvas''juara_community';
$config['fb_apptype''iframe';
$config['fb_auth''email'

2. is it possible to show status of users who using myFbApps that i created ? i have read it that i need some kind a access token to make it works but on the facebook_ignited methods i never seem any access token to input to get user data array…..

3. if is there a access token to access user data, how to make it never expired…... (need a official school portal to show some school status in my portal…so since it official i should make the access token never expired)

4. is it possible to user to create some event on facebook by using this library ?

thanks for the library, your respond and sorry for my basic question….. i guess this would be a good reference for some beginner like me in advance smile

 

 Signature 

...thanks for the respond by the way smile

 
Posted: 18 August 2012 12:03 AM   [ Ignore ]   [ # 114 ]   [ Rating: 0 ]
Joined: 2012-05-02
29 posts

I can answer #1, when you load the site inside of facebook like button dosen’t appear if you go to the url of your canvas page http://yourAppDomain.com you’re likely to see the like button. I can’t tell you why, nor did any pop ups work for me while I was within the app.facebook.com/yourApp, but outside everything worked fine.

 
Posted: 18 August 2012 12:10 AM   [ Ignore ]   [ # 115 ]   [ Rating: 0 ]
Joined: 2012-08-17
4 posts

I can answer #1, when you load the site inside of facebook like button dosen’t appear if you go to the url of your canvas page http://yourAppDomain.com you’re likely to see the like button. I can’t tell you why, nor did any pop ups work for me while I was within the app.facebook.com/yourApp, but outside everything worked fine.

i use the demo page from fresh facebook_ignited welcome page,
the problem is when i click like… the button never change to “You like this apps” or something like that or any number of how many people like my apps ?

sorry i guess my #1 question does not very clear..

 

 Signature 

...thanks for the respond by the way smile

 
Posted: 18 August 2012 12:15 AM   [ Ignore ]   [ # 116 ]   [ Rating: 0 ]
Joined: 2012-05-02
29 posts

If you do it from your regular domain, does it work. If you click on any of the demo page links that show up?

 
Posted: 18 August 2012 12:19 AM   [ Ignore ]   [ # 117 ]   [ Rating: 0 ]
Joined: 2012-08-17
4 posts

i setting my App Domains to http://localhost/MyApp/
from there the like button behave as what i say before

 Signature 

...thanks for the respond by the way smile

 
Posted: 21 August 2012 02:30 PM   [ Ignore ]   [ # 118 ]   [ Rating: 0 ]
Avatar
Joined: 2010-08-21
77 posts

A quick update: I have changed my username on github to Necromnius, please keep an eye out for the new links in first post and my signature. Thanks!

 Signature 

Dark Prospect Games, LLC | Facebook Ignited on GitHub

 
Posted: 24 August 2012 07:51 PM   [ Ignore ]   [ # 119 ]   [ Rating: 0 ]
Joined: 2012-08-17
4 posts

hai…. deth4uall or Necromnius
can u give some point for my problem ?

 Signature 

...thanks for the respond by the way smile

 
Posted: 25 August 2012 11:50 AM   [ Ignore ]   [ # 120 ]   [ Rating: 0 ]
Avatar
Joined: 2010-08-21
77 posts

#1 You will need to make sure that you are using the latest of this library and examples, I have added a lot of extra examples to the repo since then. I was able to get a lot added when I went to the Austin Facebook World Hack last night, and I noticed that the example that I added had some issues with the javascript for that.

#2 You can get the users access token with

$this->fb_ignited->getAccessToken() 

#3 I am not sure if you are able to create a never expiring access token, because that would pretty much negate all of the security protocols that the Facebook Developers included in the new system. That is something you will have to talk to them about.

#4 Yes you can create an event just read the wiki documentation for the library and you would have seen the method to be called.

 Signature 

Dark Prospect Games, LLC | Facebook Ignited on GitHub

 
Posted: 12 September 2012 10:45 PM   [ Ignore ]   [ # 121 ]   [ Rating: 0 ]
Joined: 2011-05-17
23 posts

Has anyone else had a problem with FBi not working with IE 10?  It seems to work fine in Firefox but the call to $this->fb_ignited->fb_get_me(true) redirects infinitely

 
Posted: 13 September 2012 11:21 AM   [ Ignore ]   [ # 122 ]   [ Rating: 0 ]
Avatar
Joined: 2010-08-21
77 posts

Might be that Facebook still has a bug, I encountered that a while back and it’s a running bug with their API. Sometimes IE works, sometimes not.

 Signature 

Dark Prospect Games, LLC | Facebook Ignited on GitHub

 
Posted: 15 September 2012 07:43 PM   [ Ignore ]   [ # 123 ]   [ Rating: 0 ]
Joined: 2011-05-17
23 posts

Odd.  I thought the problem had magically fixed itself until I started checking the FBi use on other machines and found that I had that problem consistently on machines that weren’t running my server (yes, I develop on the server. I don’t have a plethora of machines) until I added this as part of the constructor for the class calling FBi

      parse_str($_SERVER[‘QUERY_STRING’],$getArr);
      $_REQUEST[‘state’]=$getArr[‘state’];
      $_REQUEST[‘code’]=$getArr[‘code’];

Now it works on remote machines.

 
Posted: 22 September 2012 12:49 PM   [ Ignore ]   [ # 124 ]   [ Rating: 0 ]
Joined: 2012-09-17
5 posts

I’m having a problems with my fb_ignited app that I hope someone can suggest some things for me to try.
I can’t get the requests dialog to work, Ive tried all kinds of permutations and have ended up at head against wall stage. I’ve noted in the documentation that it mentions fb_request_dialog($display, $name) but I can’t figure out how to implement. Any help will be appreciated.
Thanks
Martin

 
Posted: 22 September 2012 03:34 PM   [ Ignore ]   [ # 125 ]   [ Rating: 0 ]
Avatar
Joined: 2010-08-21
77 posts
tacowaco - 22 September 2012 12:49 PM

I’m having a problems with my fb_ignited app that I hope someone can suggest some things for me to try.
I can’t get the requests dialog to work, Ive tried all kinds of permutations and have ended up at head against wall stage. I’ve noted in the documentation that it mentions fb_request_dialog($display, $name) but I can’t figure out how to implement. Any help will be appreciated.
Thanks
Martin

Have you tried

echo fb_request_dialog($display$name); 

?

 Signature 

Dark Prospect Games, LLC | Facebook Ignited on GitHub

 
8 of 11
8