Go中来自url的JSON解码

我有我的 php 代码。如何在 Go 中创建这样的东西?


<?php

$url = 'https://api.twitter.com/1.1/search/tweets.json';

$context = stream_context_create(array(

  'http' => array(

     'ignore_errors'=>true,

     'method'=>'GET'

   )

));

$response = json_decode(file_get_contents($url, false, $context));


print_r($response);

?>


斯蒂芬大帝
浏览 199回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go