I want to share image on google plus:
I have used google+ api
AppDelegate.m
[GPPSignIn sharedInstance].clientID = @\"MyClientID\"; [GPPDeepLink s
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.