2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Yahoo APIでアクセストークン有効期限切れのレスポンスサンプル

Last updated at Posted at 2019-05-08

本稿で学べること

  • 有効期限が切れたアクセストークンでYahoo APIを叩いたとき、どのようなHTTPレスポンスが得られるか。

送信したHTTPリクエスト

Request
POST /ShoppingWebService/V1/orderList HTTP/1.1
Accept: application/json, */*
Accept-Encoding: gzip, deflate
Authorization: Bearer [[...有効期限切れアクセストークン...]]
Connection: keep-alive
Content-Length: 241
Content-Type: application/xml
Host: test.circus.shopping.yahooapis.jp
User-Agent: HTTPie/1.0.2

<?xml version="1.0" encoding="UTF-8" ?>
<Req>
 <Search>
   <Condition>
    <OrderTimeFrom>20190101000000</OrderTimeFrom>
   </Condition>
   <Field>OrderId,Version</Field>
 </Search>
 <SellerId>****-********</SellerId>
</Req>

得られるHTTPレスポンス

Response
HTTP/1.1 401 Unauthorized
Age: 0
Connection: keep-alive
Content-Type: application/xml
Date: Wed, 08 May 2019 07:20:20 GMT
Server: Apache
Transfer-Encoding: chunked
WWW-Authenticate: Bearer realm="yahooapis.jp", error="invalid_token", error_description="expired token"

<?xml version="1.0" encoding="utf-8" ?>
<Error>
    <Message>
        Please provide valid credentials. Bearer realm="yahooapis.jp", error="invalid_token", error_description="expired token"
    </Message>
</Error>

関連

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?