日本雅虎拍卖我赢得的名单

时间:2017-08-20 09:25:52

标签: yii2-advanced-app yahoo yahoo-api

我想从下面给出的雅虎拍卖网站url api中获取我的拍卖获奖名单。在雅虎开发网站上。我无法理解我需要获取访问令牌的位置。请在下面的ref网站上查看代码

参考网站:https://developer.yahoo.co.jp/webapi/auctions/auction/v2/mywonlist.html

https://auctions.yahooapis.jp/AuctionWebService/V2/myWonList?start=>
Sample request
GET /AuctionWebService/V2/myWonList?start=
Host: auctions.yahooapis.jp
Authorization: Bearer <Token>

我正在使用yii2。我已经使用过其他api类似列表类别与列表拍卖和搜索以及所有工作正常但但我如何访问或使用这些API。

My auction display (watch list · auction underway)
My auction display (watch list · ended auction)
My auction display (during bidding)
My auction display (successful bid portion)
My auction display (under exhibition)
My auction display (exhibition end minute)
My auction display (successful bidder list)
My auction deletion (successful bid part)
My auction deletion (exhibition end minute)
My auction display (price cut negotiation)

如上所述,所有api都需要访问令牌,但我怎样才能获得访问令牌。

1 个答案:

答案 0 :(得分:0)

您需要按照特定步骤获取访问令牌。 这些步骤可以在this page中找到(请注意所有文件都是日文)。这些步骤是:

  1. 阅读T&amp; Cs。
  2. 获取YahooID。
  3. 获取ClientID(和秘密)。
  4. 使用这些信息部署您的应用程序。
  5. 这取决于您需要实现的目标,但您可以通过几种方式获取访问令牌。根据您的描述,我假设您的应用程序将需要YahooJapan所称的#34;授权代码流程&#34;,您可以找到here

    希望它有所帮助。

    enter image description here