OAuthException: (# 100) picture is not formatted correctly

From last week I get:

OAuthException: (#100) picture URL is not properly formatted 

for some posts. The behavior is inconsistent.

I am using the Facebook API . I cannot think of anything in my code that could guarantee this behavior.

+7
source share
2 answers

I ran into this problem a few days ago, and found that I was sending the image to "/me/feed" , which should be "me/photos" , also I tried to send the image from different URLs not included in the URLs application domain. and it works great for me

+20
source

Usually, error # 100 occurs when you try to use a URL that is not included in the pre-approved list that you fill out in the main application settings. The list is marked “Application Domain:” in the image below.

if you are using an external repository, you will need to add it to make it work. Below you can see that I have added a few to this project. enter image description here

+2
source

All Articles