Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

I am using codeigniter and in that i have 2 files in library for facebook graph api named as base_facebook and facebook....and i want to give extended permission for my facebook application...anyone please helpp me in that....

friends_about_me,friends_activities,friends_birthday,friends_education_history,friends_events,friends_groups,friends_hometown,friends_interests,friends_likes,friends_location,friends_notes,friends_online_presence,friends_photo_video_tags,friends_photos,friends_relationships,friends_relationship_details,friends_religion_politics,friends_status,friends_videos,friends_website,friends_work_history,user_about_me,user_activities,user_birthday,user_education_history,user_events,user_groups,user_hometown,user_interests,user_likes,user_location,user_notes,user_online_presence,user_photo_video_tags,user_photos,user_relationships,user_relationship_details,user_religion_politics,user_status,user_videos,user_website,user_work_history,email,read_friendlists,read_mailbox,read_stream,publish_stream,offline_access,publish_actions

this is the function in base_facebook ==>

public function getLoginUrl($params=array('friends_about_me,friends_activities,publish_stream,offline_access,publish_actions,status_update')) {
    $this->establishCSRFTokenState();
    $currentUrl = $this->getCurrentUrl();
    return $this->getUrl(
      'www',
      'dialog/oauth',
      array_merge(array(
                    'client_id' => $this->getAppId(),
                    'redirect_uri' => $currentUrl, // possibly overwritten
                    'state' => $this->state),
                  $params));
  }

here in $params i m trying to pass permissions but this is not effecting the result...i want to give all permisions...anyone please help me in that...my app is pending due to this problem....any help will be highly appriciable....thank you in advance

share|improve this question
Can you add to your question the resulting login Url you get back from the getLoginUrl() call? – DMCS Jan 2 '12 at 17:33
sorry...i didnt get u... :( – Shashank Vaishnav Jan 2 '12 at 18:48
Doesn't look like you are passing in the $param correctly. It's coming in as &0=friends_about_me .... shouldn't it be scope=friends_acount_me ? – DMCS Jan 2 '12 at 19:24
yes sir but how can i make it correct? – Shashank Vaishnav Jan 3 '12 at 10:08
show 3 more comments

1 Answer

Post to user wall on facebook from CodeIgniter

I had similiar issues. I never got that base facebook thing working but i used the files from Phil Sturgeon that are available here and got everything working.

If you disable the better auth thing in your apps settings on facebooks dev link you might find better results.

share|improve this answer
hey my base_facebook is working properly....i can tell u how to procedd – Shashank Vaishnav Jan 8 '12 at 13:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.