We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
version: 2.1 Wechat/Http.php
line 81: if ($this->token) { // clear repeat token $url = preg_replace('/[?&]access_token=[^&]*/i', '', $url); $url .= (stripos($url, '?') ? '&' : '?').'access_token='. $this->token->getToken();
The text was updated successfully, but these errors were encountered:
为啥会有重复添加的问题,在其它地方都没有设置过access token 呢
Sorry, something went wrong.
Retry bugfix #201.
5d41224
@alpha1130 找到问题所在了,是重试机制导致的,多谢!
No branches or pull requests
version: 2.1
Wechat/Http.php
line 81:
if ($this->token) {
// clear repeat token
$url = preg_replace('/[?&]access_token=[^&]*/i', '', $url);
$url .= (stripos($url, '?') ? '&' : '?').'access_token='. $this->token->getToken();
The text was updated successfully, but these errors were encountered: