I've included the Google+ SDK inside my app to share to Google+ but whenever I try to share something the pre filled text results blank like this:
https://www.dropbox.com/s/um0bf4p3ennl0tu/iOS%20Simulator%20Screen%20shot%2026%20Dec%202013%2022.43.14.png
This is my code and it's not working even in the sample app provided by Google (I changed the client id and the bundle id of the sample app and discovered that what worked with the original config, didn't work anymore with mine, even if the sharing started ok), so I guess there must be something with the Google+ client id I created...
[GPPSignIn sharedInstance].clientID=kGooglePlusClientID;
id<GPPShareBuilder> shareBuilder=[[GPPShare sharedInstance] shareDialog];
[shareBuilder setPrefillText:@"THIS IS THE PREFILLED TEXT"];
[shareBuilder setURLToShare:[NSURL URLWithString:@"www.babisoft.com"]];
[shareBuilder open];
Is anyone else facing this kind of problems?
Thank you
Stefano