jay
jay

Reputation: 3667

Facebook Sharing Window Issue

I am using Sharekit for Facebook sharing on my iPhone app. I had used used the following code for setting the app icon in the sharing window. It works fine except during first time login to Facebook.

NSURL *url = [NSURL URLWithString:@"http://google.com"];

shareScore_ = [SHKItem URL:url title:[NSString stringWithFormat:@"Share Message" contentType:SHKURLContentTypeUndefined];

shareScore_.facebookURLSharePictureURI = @"http://edibleapple.com/wp-content/uploads/2009/04/apple_rainbow_logo.jpeg";

[SHKFacebook shareItem:shareScore_];

During first time login it displays the image in http://google.com and if the user is already logged in it displays the correct image in icon_url. Is there any solution for this?

First Time Login ScreenShot: enter image description here

Already Logged In Screenshot:

enter image description here

Upvotes: 0

Views: 241

Answers (1)

Vilém Kurz
Vilém Kurz

Reputation: 3400

It was a bug in ShareKit - it is fixed now. Please update.

Upvotes: 1

Related Questions