How to edit list of testers emails in the closed test track?
https://developers.google.com/android-publisher/authorization https://developers.google.com/android-publisher/api-ref/rest/v3/edits.testers/update
<?php
$google = "https://accounts.google.com/o/oauth2/auth";
$scope = "https://www.googleapis.com/auth/androidpublisher";
$response_type = "code";
$access_type = "offline";
$redirect_uri = "https://website.com/callback";
$client_id = $client_id;
$url = $google."?scope=".$scope."&response_type=".$response_type."&access_type=".$access_type."&redirect_uri=".$redirect_uri."&client_id=".$client_id;
?>