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 created a Facebook application to login and post to wall using my PHP application. when I click on login link I am getting error "Logging in will not add this app's activity to Facebook" and not prompt the permission request step.

EDIT:

I just created a application and when I going to following url it's not prompt "Request for Permission". it's prompt "Logging in will not add this app's activity to Facebook" error.

https://www.Facebook.com/dialog/oauth/?
  scope=publish_stream,publish_actions,read_stream&
  client_id=xxxxxxxxxxxxx&
  redirect_uri=http://xxxxxx.xxx/post_to_wall.php&
  response_type=token
share|improve this question
Plase give more effort while asking a question give your codes and if possible more information about error. – Utku Yıldırım Nov 18 '11 at 12:28
try with the following example. net.tutsplus.com/tutorials/php/… – Amila Nov 18 '11 at 12:41

1 Answer

I think Issue is with your URL. refer below URL with is I'm Using and Working absolutely fine.

$facebook_link   = "https://graph.facebook.com/oauth/authorize?type=user_agent&client_id=".$app_id;
$facebook_link  .= "&redirect_uri=".$url."/settings";
$facebook_link  .= "&scope=publish_stream,offline_access,manage_pages";

Try it. may Help you. good luck.

Thanks.

share|improve this answer
i checked but still having the same issue – user1053775 Nov 18 '11 at 13:40

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.