Results 2 issues of 文江

直接使用会报错invalid_request_uri,修改DoubanOAuth.php文件第135行return 'Authorization: Bearer ' . $this->access_token;为return 'Authorization: ' . $this->access_token;

### 在此输入你需要反馈的 Bug 具体信息(Bug in Detail): ![Image](https://github.com/user-attachments/assets/8dea80dd-9ea8-4c14-af1c-022dea3afa5f) ## nginx 代理配置 ``` location / { proxy_http_version 1.1; proxy_set_header Host $host; proxy_set_header X-Real_IP $remote_addr; proxy_set_header X-Forwarded-For $remote_addr:$remote_port; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection...