rapidwebltd / php-google-contacts-v3-api

👥 PHP library for the Google Contacts API (v3)
MIT License
102 stars 64 forks source link

how to get selfURL ? #50

Closed aa-ahmed-aa closed 6 years ago

aa-ahmed-aa commented 6 years ago

How to get the selfUrl of specific user to can update his data ?

DivineOmega commented 6 years ago

Each contact object contains a self URL. If you get all the contacts, as below, you will be able to see the self URL for each contact.

$contacts = rapidweb\googlecontacts\factories\ContactFactory::getAll();

var_dump($contacts);
aa-ahmed-aa commented 6 years ago

Thanks Again @DivineOmega