Image Sharing Using Google Plus in ios

后端 未结 6 1274
谎友^
谎友^ 2021-02-04 09:51

I want to share image on google plus:

I have used google+ api

AppDelegate.m

[GPPSignIn sharedInstance].clientID = @\"MyClientID\";
[GPPDeepLink s         


        
6条回答
  •  自闭症患者
    2021-02-04 10:02

    you are not assigning client_ id of GPPSignIn class. Try this code in your appdelegate

    [GPPSignIn sharedInstance].clientID = @"MY_CLIENT_ID";
    [GPPDeepLink setDelegate:self];
    [GPPDeepLink readDeepLinkAfterInstall];
    

    then try sharing link for implementing it in right way.

提交回复
热议问题