How do I get the custom properties of a custom open graph object?

I defined a custom Open Graph action (like "drive") and a custom object ("car") with custom properties ("color", "do"), then added meta tags to the object page and validated with the Object Debugger. I've also posted a few actions on my graph. When I use the action API to view disk actions ("/ me / [name_space]: disk"), I see all actions and objects with their default properties (ids, titles ..), but no custom properties. How can I get the objects with all their custom properties?

+3


source to share


1 answer


It may be too late, but I faced the same problem today.

It seems that the custom action /me/[name_space]:drive

only provides standard properties, but I found that if you include the object type as well, you can get it using custom ones:

GET https://graph.facebook.com/me/recipebox:cook/recipes

      



or in your example:

GET https://graph.facebook.com/me/[name_space]:drive/car

      

+1


source







All Articles