Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any way of changing gmail password programmatically using java?

Is there any way of changing gmail password programmatically using java?

like image 311
GST Avatar asked Apr 13 '11 08:04

GST


People also ask

How can I change my Gmail password without password?

To reset your Gmail password, you'll need to select the "Forgot password" option on the login screen. Once you click this option, you'll be asked to provide Google with your recovery phone number or email — a link to reset your password will be sent to you.


1 Answers

The google provisioning API guide has updateUser method which takes a UserEntry object. You can use it to update the password I suppose, you will have to try it out. Check the javadocs for definition of UserEntry

like image 87
kjp Avatar answered Nov 15 '22 01:11

kjp