Pass custom property values to Open Graph Object in native Android app with Facebook SDK -


i creating own native android app facebook integration publish open graph stories.

the publishing works fine, want include custom string property (wishdesc) (which user provided inside app) inside story post (e.g. description).

how can that? tried this, before object/action gets published in asynctask given facebook, bot none of them work.

    makeaction makeaction = action.cast(makeaction.class);      makeaction.setproperty("wishdesc", "###my new desc");     makeaction.setproperty("wish.wishdesc", "###my new desc");     makeaction.setproperty("muku-starcall:wishdesc", "###my new desc");      wishgraphobject wishtobe = null;     wishtobe = wishgraphobject.factory.create(wishgraphobject.class);     wishtobe.setproperty("muku-starcall:wishdesc", "###my new desc");     wishtobe.setproperty("wish.wishdesc", "###my new desc");      ... 


Comments

Popular posts from this blog

c# - Send Image in Json : 400 Bad request -

jquery - Fancybox - apply a function to several elements -

An easy way to program an Android keyboard layout app -