Image Unavailable in facebook share debugger - facebook

I am debugging a url to check all 'og:image' property are set properly or not:
https://developers.facebook.com/tools/debug/sharing/?q=http%3A%2F%2Fwww.sinepulse.com%2Ftechnical-project-manager
Yes. It set. but when I debug this I can see the following error message:
Image Unavailable
Error while downloading http://sinepulse.com/sites/all/themes/smart_sinepulse/img/job/header.jpg with HTTP response code: 404
You can see that url pretty good: http://sinepulse.com/sites/all/themes/smart_sinepulse/img/job/header.jpg.
whats wrong from my end?

Related

is there a way i can fix my api request issue

I did this but the (endPointUrl) after await get, is showing error, and having being have lot of issue, in which any url I use never responds always showing failed to locate localhost
enter code here

Error while uploading privacy url to developer.facebook.com

In facebook for developers, when I am checking a URL in haring debugger, I am getting a response code of 206 with the following error:
Inferred Property: The 'og:image' property should be explicitly provided, even if a value can be inferred from other tags.
Is it some tag I am missing that is causing a response code of 206 to be returned along with warnings rather than response code of 200.

I cannot post my new articles on Facebook

Since yesterday I cannot post on Facebook I have only an URL without thumbnail, nor metas.
I think that is a problem with like button but any idea how to fix.
Strange because my old articles working normally! only I have problems when I write a new post.
Here is the Facebook debugger info:
Response Code: 503
Fetched URL: http://www.whitewolfpack.com/2012/02/bonnie-marris-wildlife-artist-of_4001.html
Canonical URL: http://www.whitewolfpack.com/2012/02/bonnie-marris-wildlife-artist-of_4001.html
Critical Errors That Must Be Fixed
Error Scraping Page: Bad Response Code
Errors That Must Be Fixed
Missing Required Property: The og:url property is required, but not present.
Missing Required Property: The og:type property is required, but not present.
Missing Required Property: The og:title property is required, but not present.
Open Graph Warnings That Should Be Fixed
Inferred Property: The og:url property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property: The og:title property should be explicitly provided, even if a value can be inferred from other tags.
URLs
Graph API: http://graph.facebook.com/10150624491404835
Scraped URL: See exactly what our scraper sees for your URL
http://www.whitewolfpack.com/2012/02/bonnie-marris-wildlife-artist-of_4001.html
www.whitewolfpack.com
Critical Errors That Must Be Fixed
Error Scraping Page: Bad Response Code
HTTP Response Code: 503
For more information about response codes, see: http://en.wikipedia.org/wiki/List_of_HTTP_status_codes
503 Service Unavailable
The server is currently unavailable (because it is overloaded or down for maintenance).[2] Generally, this is a temporary state.
Your might be in a load balanced environment where a bad server is still in rotation.

How to resolve error: "The post’s action links must be valid URLs"

Using the latest version of ShareKit to post URLs like so:
[SHKFacebook shareURL:[NSURL URLWithString:#"http://www.google.com"]];
is resulting in the following error message being displayed (in a web view):
Application response error
The post’s action links must be valid URLs. You can see this because you are one of the developers of the app.
What does this error message really mean, and (more importantly) how can it be fixed?
The problem occurs if 'SHKConfigMyAppURL' is not a valid URL.

UIWebView Unsupported URL

I'm using a UIWebView that's using an offline HTML file to manage it's workflow.
But, every time I tap on one of the items in the UIWebView the workflow is correct but I get a console message telling me that the URL is invalid.
The message is as follows:
{
NSErrorFailingURLKey = "applewebdata://BA77B31A-D9ED-4883-84BB-4270BCBEECA5?selected#node-2866424";
NSErrorFailingURLStringKey = "applewebdata://BA77B31A-D9ED-4883-84BB-4270BCBEECA5?selected#node-2866424";
NSLocalizedDescription = "unsupported URL";
NSUnderlyingError = "Error Domain=kCFErrorDomainCFNetwork Code=-1002 \"unsupported URL\" UserInfo=0x592ece0 {NSErrorFailingURLKey=applewebdata://BA77B31A-D9ED-4883-84BB-4270BCBEECA5?selected#node-2866424, NSErrorFailingURLStringKey=applewebdata://BA77B31A-D9ED-4883-84BB-4270BCBEECA5?selected#node-2866424, NSLocalizedDescription=unsupported URL}";
}
The error is quite clear, but I'm not completely sure where the error comes from, seeing that my URL is correct via the URI standard, as far as I know.
"applewebdata://BA77B31A-D9ED-4883-84BB-4270BCBEECA5?selected#node-2866424"
I don't know if there are differences between a normal HTTP URL and an AppleWebData URL, but this is correct according to the URI scheme.
e.g.:
scheme name:file name:query:fragment
Am I missing something here? I'd like to have my UIWebView do it's work without complaining about an incorrect URL, because the workflow is good. It does what I intended, but just not without being quiet.
Thanks in advance!
Bryan
Assuming you are loading this with loadHTMLString:, try setting the page's baseUrl as mentioned in this question: shouldStartLoadWithRequest appending link with applewebdata