You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've encountered an issue when integrating with Mailchimp, as it turns out mailchimp tokens never expire.
A compliance fix is available here. It is an access_token_response hook, where the expired_in value is set to 3600 instead of 0. The consequence is that when my app is authorized and a token is fetched, I can use that token for 3600 seconds.
The problem is that I'd like to store and use this token once the arbitrary 3600 seconds have passed. Currently, there doesn't seem to be a way around that. Has anyone had the same issue?
The text was updated successfully, but these errors were encountered:
Hello,
I've encountered an issue when integrating with Mailchimp, as it turns out mailchimp tokens never expire.
A compliance fix is available here. It is an
access_token_response
hook, where theexpired_in
value is set to3600
instead of0
. The consequence is that when my app is authorized and a token is fetched, I can use that token for3600
seconds.The problem is that I'd like to store and use this token once the arbitrary
3600
seconds have passed. Currently, there doesn't seem to be a way around that. Has anyone had the same issue?The text was updated successfully, but these errors were encountered: