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'm trying to post an image to Facebook using ASP.NET, it's not working and get these warnings.

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. Inferred Property:
The 'og:image' property should be explicitly provided, even if a value can be inferred
from other tags.

What does it mean with "explicitly provided"? And does someone have any good examples with publishing photos using ASP.net? Would be much appreciated!

And this is the parameters:

WebRequest(oAuthFacebook.Method.POST, 
"https://graph.facebook.com/me/feed/access_token=" + oAuth.Token,
"http://www.test.com/Image.aspx?" + image;
share|improve this question

3 Answers

Could you show us the code you are using in your header of your HTML? And I suggest you use the Facebook URL Linter to test and debug since Facebook caches every URL the first time you try to share it: https://developers.facebook.com/tools/debug

share|improve this answer
Yes, I was using that to debug. Edited my question. – s.e Apr 24 '12 at 14:52

Have you added your meta tags to your page

<meta property="og:title" content="title" />
<meta property="og:description" content="description" />
<meta property="og:image" content="thumbnail_image" />

Explicitly provided means they have to be present on the page and if not an error is thrown

share|improve this answer

Happened to me once, it's possible you have wrong og:url value. I had same Open Graph Warnings, problem was I was working inside a "dev" folder for testing stuff (http://example.com/dev/) and the og:url meta-tag was set for the root folder (http://example.com/), so Facebook was looking for EVERYTHING in example.com/ instead of example.com/dev/

The Warnings went out when changed og:url to example.com/dev/

share|improve this answer

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.