How to correctly setup the Facebook OpenGraph API story with map attachment? -


i'm trying setup custom story website/facebook app provide users "i've been here" , "i want visit place" functionality according documentation: https://developers.facebook.com/docs/opengraph/creating-custom-stories/

everything working great except "stories" app appears on timeline normal item layout photo , description when want show item on map.

example url og data: http://en.advisor.travel/poi/16828:

<meta property="place:location:latitude" content="36.25500"/> <meta property="place:location:longitude" content="-112.69770"/> <meta property="og:image" content="http://img1.advisor.travel/657x340px-bd308129ce37a06485dfe9ac47bee982.jpg"/> <meta property="og:title" content="havasu falls"/> <meta property="og:url" content="http://en.advisor.travel/poi/16828"/> <meta property="og:type" content="worldpoi:attraction"/> 

as can see provide location coordinates too.

the story created using custom action called "want visit" custom property attraction inherited place object. attachment's layout of story set map "highlighted points" property set "attraction.place:location".

here how attachment looks like: http://dl.dropbox.com/u/16514036/screenshots/bkpm.png

what doing wrong? :)

ps: action set development mode , cannot tested externally.

it seems reason default "place:location:attribute" object extended place object wouldn't work. should add own geopoint attribute object , set on page:

<meta property="your_namespace:location_attribute:latitude" content="36.25500"/> <meta property="your_namespace:location_attribute:longitude" content="-112.69770"/> 

in case action posted map correctly.


Comments

Popular posts from this blog

Delphi XE2 Indy10 udp client-server interchange using SendBuffer-ReceiveBuffer -

Qt ActiveX WMI QAxBase::dynamicCallHelper: ItemIndex(int): No such property in -

Enable autocomplete or intellisense in Atom editor for PHP -