1

I am currently working with an application which has to set a profile image.Can I get profile picture from Gmail account in IOS 7?

Cœur
  • 37,241
  • 25
  • 195
  • 267
umer
  • 89
  • 5

2 Answers2

0

Try this here.you need to follow these steps.It has loads of stuff - including name, public profile url, gender, photo etc.

Community
  • 1
  • 1
hmdeep
  • 2,910
  • 3
  • 14
  • 22
0

for Profile picture in Gmail account........
after successful login in gmail use this code

GTLPlusPerson *gpUser =  [[GPPSignIn sharedInstance] googlePlusUser];
if([[gpUser image] url])
        {
           UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:[[gpUser image] url]]]];
        }
Ramesh
  • 102
  • 11