Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this code for sharing an app on facebook but when i share it it puts right links but wrong picture of the app

Button bShare = (Button) findViewById(R.id.button7);
    bShare.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            final Intent intent = new Intent(Intent.ACTION_SEND);
            intent.setType("text/plain");
            intent.putExtra(Intent.EXTRA_TEXT, "https://play.google.com/store/apps/details?id=com.myglobaljournal.christmascarol");
            startActivity(Intent.createChooser(intent, "Share with"));
share|improve this question

1 Answer

up vote 3 down vote accepted

You can use the Debug tool to check how facebook "sees" this url.

From the result you can see that there are no og meta tags defined and so facebook probably takes a random picture from the content.


Edit

Facebook uses the open graph meta tags to extract info which is then used to render the share stories on the facebook experience.

You can see an example in the archived version of the Open Graph protocol, the new version uses the tags there but it's too complicated to your needs.

The only question is: can you any control over the output of the google play store for your app? My guess is that you can't, and if you look at other examples (such as instagram or opera mobile) the image also appears random.

share|improve this answer
1  
You'll need to somehow make sure that the html output has the og:image meta tag, do you have any control over the output? – Nitzan Tomer May 25 '12 at 14:21
1  
You can't fix this if the content comes from a site you don't manage (for example, Google Play). – Connor Treacy May 25 '12 at 14:33
1  
Edited my answer. – Nitzan Tomer May 25 '12 at 14:36
1  
I have no idea. You can try and check, but since apps like instagram don't have their own image I doubt that it's possible. – Nitzan Tomer May 25 '12 at 14:43
1  
oh and what about if i created a webpage with content that will automatically redirect the link to the google play website would that work cuz then i would have access to creating a meta tag – user1385487 May 25 '12 at 14:45
show 8 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.