ios - "Sharing without a URL" not working properly -
according google+ ios sdk docs, can share google+ doing this:
- (ibaction) didtapshare: (id)sender { id<gppsharebuilder> sharebuilder = [[gppshare sharedinstance] sharedialog]; // line manually fill out title, description, , thumbnail of // item you're sharing. [sharebuilder settitle:@"new 5k record!" description:@"i ran 5000 meters in 26:16! that's new record!"; thumbnailurl:@"https://www.example.com/images/5krun.png"]; [sharebuilder open]; }
however, description
"i ran 5000 meters in 26:16! that's new record!" not show on profile page after sharing, title
, thumbnailurl
do. description present in preview of shared when share it not there.
also, docs don't have call
[sharebuilder setcontentdeeplinkid:@"some id here"];
otherwise sdk prints out:
-[gppsharebuilderimpl geturl] content deep-link id required title , description.
the fact docs don't mention makes me think out of date , need else description shared. has gotten description show up?
Comments
Post a Comment