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++ - Convert big endian to little endian when reading from a binary file -

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

unicode - Are email addresses allowed to contain non-alphanumeric characters? -