我正在发送获取盒令牌访问权限的请求。我收到了200个代码但响应是一个html,表示"您正在查看的页面已过期"。
请求:
access_token_params = {
grant_type: 'authorization_code',
code: params[:code],
client_id: "id",
client_secret: "secret"
}
box_ressources[:token].post(params: access_token_params) { |response, request, result, &block|
check_request_success(response, "send_access_token")
logger.info(response.to_str)
set_token
}