第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何獲取響應(yīng)結(jié)果的特定值

如何獲取響應(yīng)結(jié)果的特定值

PHP
回首憶惘然 2021-12-03 19:47:02
我正在嘗試通過 Laravel 控制器使用 Laravel 將圖像上傳到 Imgur,但是,我已經(jīng)創(chuàng)建了上傳,但我不知道如何獲取響應(yīng)結(jié)果的特定 Id。謝謝你。$client = new \GuzzleHttp\Client();        $response = $client->request('POST', 'https://api.imgur.com/3/image', [            'headers' => [                'authorization' => 'Client-ID ' . 'my_id',                'content-type' => 'application/x-www-form-urlencoded',            ],            'form_params' => [                'image' => base64_encode(file_get_contents($request->file('image')->path()))            ],        ]);        echo $result = response()->json(json_decode(($response->getBody()->getContents())));
查看完整描述

1 回答

?
蝴蝶不菲

TA貢獻(xiàn)1810條經(jīng)驗 獲得超4個贊

->可用于訪問對象屬性。查看以下示例:


$client = new \GuzzleHttp\Client();

        $response = $client->request('POST', 'https://api.imgur.com/3/image', [

            'headers' => [

                'authorization' => 'Client-ID ' . 'my_id',

                'content-type' => 'application/x-www-form-urlencoded',

            ],

            'form_params' => [

                'image' => base64_encode(file_get_contents($request->file('image')->path()))

            ],

        ]);

        $response = json_decode($response->getBody()->getContents()));

        // get the results:

        $id = $response->data->id;

        $height = $response->data->height;


查看完整回答
反對 回復(fù) 2021-12-03
  • 1 回答
  • 0 關(guān)注
  • 200 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號