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

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

c++ - Convert big endian to little endian when reading from a binary file -