Hi, I am writing a Drupal module so that when a user changes his password in our site it would change in our Google email accounts.
I am getting my token previously and then sending: <?xml version='1.0' encoding='utf-8'?> <atom:entry xmlns:atom='http://www.w3.org/2005/Atom' xmlns:apps='http://schemas.google.com/apps/2006'> <apps:login userName='user_name' password='password' changePasswordAtNextLogin='false' hashFunctionName='SHA-1' suspended='false' admin='false' agreedToTerms='true' /> </atom:entry> I am getting back <?xml version='1.0' encoding='UTF-8'?> <entry xmlns='http://www.w3.org/2005/Atom' xmlns:apps='http://schemas.google.com/apps/2006' xmlns:gd='http://schemas.google.com/g/2005'> <id> https://apps-apis.google.com/a/feeds/students.fhchs.edu/user/2.0/student_test</id> <updated> 1970-01-01T00:00:00.000Z</updated> <category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/apps/2006#user'/> <title type='text'> student_test</title> <link rel='self' type='application/atom+xml' href='https://apps-apis.google.com/a/feeds/mydomain/user/2.0/student_test'/> <link rel='edit' type='application/atom+xml' href='https://apps-apis.google.com/a/feeds/mydomain/user/2.0/student_test'/> <apps:login userName='student_test' suspended='false' ipWhitelisted='false' admin='false' changePasswordAtNextLogin='false' agreedToTerms='false'/> <apps:quota limit='7168'/> <apps:name familyName='test' givenName='student'/> <gd:feedLink rel='http://schemas.google.com/apps/2006#user.nicknames' href='https://apps-apis.google.com/a/feeds/mydomain/nickname/2.0?username=student_test'/> <gd:feedLink rel='http://schemas.google.com/apps/2006#user.emailLists' href='https://apps-apis.google.com/a/feeds/mydomain/emailList/2.0?recipient=student_test%40mydomain'/> </entry> I would like to find if the password has been change and I don't see anything that gives me a clue, I am following the what is recommended in http://code.google.com/googleapps/domain/gdata_provisioning_api_v2.0_developers_protocol.html#Update_Account_Example If you someone knows what can be done I will greatly appreciated :) Thanks! Ally -- You received this message because you are subscribed to the Google Groups "Google Apps Domain Information and Management APIs" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-apps-mgmt-apis?hl=en.
