0

今日 (虫垂切除後) は仕事に行けませんが、それでも PowerShell のスキルを磨きたいので、World of Warcraft API にアクセスしてオークション ハウスのデータを取り出そうと決めました。

$apiKey = "myapikey"
$serverName = "MyServer"
$webAddress = "https://us.api.battle.net/wow/auction/data/"

$url = $webAddress + $serverName + "?apikey=" + $apiKey

$response = Invoke-RestMethod -Uri $url -ContentType "application/json"

$aucURL = $response.files.url
$aucTime = $response.files.lastModified

$response = Invoke-RestMethod -Uri $aucURL

$aucData = $response.auctions #Always returns blank

私はこの時点に到達し、以下のようなデータの膨大なリストを取得します。私の人生では、オークション データにアクセスできないようです。

{
"realms": [
    {"name":"MyServer","slug":"MyServer"}],
"auctions": [
    {"auc":723774847,"item":109167,"owner":"Laddypally","bid":369550,"buyout":389000,"quantity":1,"timeLeft":"VERY_LONG","rand":0,"seed":0,"context":1},
    {"auc":724234542,"item":2996,"owner":"Mazramtaim","bid":760000,"buyout":800000,"quantity":20,"timeLeft":"VERY_LONG","rand":0,"seed":0,"context":0},
    {"auc":723207271,"item":133563,"owner":"Alsalak","bid":1187500,"buyout":1250000,"quantity":5,"timeLeft":"LONG","rand":0,"seed":0,"context":0}]}

$responses.whatever を取得する私の方法は、過去に私の仕事関連の PS のもので機能しましたが、ここでは機能しませんでした。何か理由は?

4

1 に答える 1

0

PowerShell 5 にアップグレードすると、問題が修正されました。私はコードを一切変更していないので、PS4 が大きな JSON リクエストを処理する方法に問題があったに違いありません。

于 2016-09-06T14:48:21.690 に答える