android - facebook: Your link could not be shared -


i'm adding ability share scores app using android's share intent:

intent shareintent = new intent(android.content.intent.action_send); shareintent.settype("text/plain"); shareintent.putextra(android.content.intent.extra_subject, "my score"); shareintent.putextra(android.content.intent.extra_text, "i scored "+score+" on "+difficultystring+" difficulty.");  context.startactivity(intent.createchooser(shareintent, "share score")); 

when choose facebook chooser, goes m.facebook.com , says "your link not shared". what's going wrong here?

this common problem found in android apps when trying share facebook. facebook blocks other applications sharing using app. i'm not sure why, many companies trying bypass this. currently, "unfix-able". sorry.


Comments

Popular posts from this blog

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c# - Making TableLayoutPanel Act Like An HTML Table (Cells That Resize Automatically Around Text) -