回答
這裏是加鏈接,谷歌的API: https://developers.google.com/+/api/
&這裏是其中u可以找到共享在谷歌加 http://code.google.com/p/google-api-objectivec-client/wiki/Introduction
現在他們沒有任何API我想他們很快就會介紹我希望能幫到你。 但現在不行。
This似乎不是正確的答案。你必須已經添加它作爲評論 –
幫助您使用Google+分享鏈接的鏈接: https://developers.google.com/+/plugins/share/#sharelink
「共享鏈接適用於本地客戶端應用程序...和 其他人可能無法使用+1或分享按鈕」
的分享對谷歌的職位最簡單的方法是加首先包括在Xcode其GPPShare.h文件,然後用GPPShareDelegate 延長.h文件然後在IBAction爲方法
id<GPPShareBuilder> shareBuilder = [[GPPShare sharedInstance] shareDialog];
// This line will manually fill out the title, description, and thumbnail of the
// item you're sharing.
[shareBuilder setTitle:@"Share" description:@"sharing" thumbnailURL:[NSURL URLWithString:@"http://25.media.tumblr.com/tumblr_m9p3n1vJmZ1rexr16o1_400.jpg"]];
[shareBuilder setContentDeepLinkID:@"rest=1234567"];
[shareBuilder open];
寫這個代碼,同時也實現GPPShareDelegate方法,它是有幫助的,以檢測成功共享
- (void)finishedSharing:(BOOL)shared
{ if (shared) {
NSLog(@"User successfully shared!");
} else {
NSLog(@"User didn't share.");
}
當我實現這種方法..我有一個控制檯輸出,我必須先登錄。我怎樣才能做到這一點 – Dalvik
我INTEGRA Google加分享。請參閱此代碼。 https://www.dropbox.com/s/o0bwtzgbpobsjkq/Share.zip?dl=0
對於雨燕3.0
import SafariServices
然後在共享按鈕添加以下代碼委託
<SFSafariViewControllerDelegate>
使用本
var urlComponents = URLComponents(string:"https://plus.google.com/share")
let queryItem = URLQueryItem(name: "url", value: "https://myexamplepagetoshare.com")
urlComponents?.queryItems = [queryItem]
let url = urlComponents?.url
let safariVC = SFSafariViewController(url: url!)
safariVC.delegate = self
self.present(safariVC, animated: true, completion: nil)
這是一個簡單的G +份額現已上市。
- 1. Google plus無法分享?
- 2. Google Plus API自定義分享按鈕
- 3. iOS Google Plus整合與分享
- 4. Google Plus分享 - 錯誤圖片
- 5. Google Plus分享URL用德語?
- 6. 如何在Google Plus上分享信息?
- 7. Google Plus共享問題
- 8. Google Plus SDK回撥共享
- 9. 通過Facebook,LinkedIn和Google Plus共享
- 10. Google plus登錄xcode共享擴展
- 11. Android - 使用Google Plus登錄並共享
- 12. 在Google plus中共享私人網址
- 13. google plus plus cordova phonegap
- 14. 分享Google Plus計數器始終顯示零
- 15. 成功分享twitter和google plus後回電
- 16. Google Plus在彈出式窗口中分享
- 17. Google plus:分享我的內容後如何獲得反饋?
- 18. 將信息分享到Facebook(牆上),Twitter(狀態),Google plus
- 19. Google Plus分享按鈕顯示錯誤圖片
- 20. C#:如何在Google Plus上分享YouTube視頻?
- 21. 分享帖子後,Google Plus計數不會增加
- 22. 在Google Plus上分享圖片而不使用意圖
- 23. 從iPhone訪問AFP分享?
- 24. 如何將Google Plus與iPhone SDK集成?
- 25. 從Android分享到Google+
- 26. 使用android sdk在Google Plus上分享照片不是通過共享意圖
- 27. Google plus-cmdline-sample
- 28. Google Plus和OpenSocial
- 29. Google plus url sharing
- 30. 黑莓google plus
[Google plus api for posting on wall like facebook](http://stackoverflow.com/questions/7857812/google-plus-api-for-posting-on-wall-like-facebook) –