Facebook One or more of the given URLs is not allowed by the App's settings

我怕爱的太早我们不能终老 提交于 2019-11-28 21:31:30

after putting site url to begin with http:// it resolve my issue. Now my Site URL looks like this: http://my_blog_name.blogspot.com/p/publishing.html

This can also happen when the redirect_uri submitted with the https://www.facebook.com/dialog/oauth request is not present in the list of Valid OAuth redirect URIs under:

  • Settings >> Advanced >> Security

After much trial and error, when I added the redirect_uri that I was using (https://www.facebook.com/connect/login_success.html in my case), I suddenly got to the step past this error.

These Problem Occurs Because of You Are not correctly Configure Your Site Link in FaceBook.

Go Facebook Developers page

1.Select 'Settings' 2.Click 'ADD PlatForm' 3.Select 'Wesite' 4.Give Your Website Name

Finally Save the Settings That's All

Facebook doesn't care what actual IP address your server is located at - but it will check that the domain name of the referring page is the same as the domain you registered with facebook.The problem is that whatever url you are currently hosting your app is not setup in your Application configuration. Go to your app settings and ensure the urls are matching.

In my case it was the www. that I omitted, so for instance:

http://website.com

instead of

http://www.website.com

InfinityPlus1

I had this problem because at first I didn't put app domain in the Settings page. And after I added "example.com" to the app domain field (assume URL is http://www.example.com), the problem no longer exists.

If it does'nt work even after you have setup the website URL in Settings -> Basic tab, and Settings -> Advanced -> Valid OAuth redirect URIs, Try doing the following stuff and check if it works out.

Step 1) Goto, Settings -> Basic -> Contact Email (Fill the email id you want your app to sync with)

Step 2) Goto, Status & Review -> Status -> Enable options as yes (Make your app visible to public)

Now, restart your app and check, if it works fine..

Your application should be on the same domain of what you enter in the facebook developper's settings

Facebook App Settings

Although answered several times with similar info, this is my experience FYI

  • Testing on localhost - I wondered if that might be the problem, but nope.
  • app_id and redirect_uri included.
  • URLs properly encoded.

So why this error?

See Facebook Community Help as I did, for the important missing part of the puzzle.

That is:

<a href="https://www.facebook.com/dialog/share?
    app_id=1234567890
    &display=page

    &href=http%3A%2F%2Fexample.org <-- This
    &redirect_uri=http%3A%2F%2Fexample.org" <-- and This

target="_overTheRainbow">Tell the world about this awesomeness!</a>

Must match the reference URLs submitted to Facebook for the app with app_id.

Yes This is The common problem of facebook api. Don't use www before url. It will solve the problem.

I was facing same problem when I was posting links on Facebook wall.

I did this:

From https://developers.facebook.com/

On Migration tab Stream post URL security was enabled. So I just disabled it and after that it is working for me now.

Hope this solve the problem for others.

Go to settings and and then Advanced tab. At the bottom "Embedded browser OAuth Login" enable this option. then your problem is resolved.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!