Esnagle, You just authorised your APP only once, and kept your client id, client secret, and refresh token in file. When you try to get yesterday's activity, you need to get the "access token" via "refresh token" first, like below,
The response below, "access_token":"1/fFBGRNJru1FQd44AzqT3Zg", "expires_in":3920, "token_type":"Bearer" }
Then you can use the new access token to get the data, like below
Because you are the only one of your APP, you will never revoke the authorization of your APP.
|