{ "message": "https:\/\/images.dog.ceo\/breeds\/hound-afghan\/n02088094_6035.jpg", "status": "success" }
<?php /** * Created by PhpStorm. * User: FZS * Time: 2023/06/05 14:26 */ class freeApi { private $apiUrl; public function __construct() { $this->apiUrl = 'https://dog.ceo/api/breeds/image/random'; } /** * 获取结果 * @return array */ public function getResult() { return file_get_contents($this->apiUrl); } }
package main import ( "fmt" "io/ioutil" "log" "net/http" ) const ( APIURL = "https://dog.ceo/api/breeds/image/random" ) func main() { queryUrl := fmt.Sprintf("%s",APIURL) resp, err := http.Get(queryUrl) if err != nil { log.Println(err) return } defer resp.Body.Close() body, err := ioutil.ReadAll(resp.Body) if err != nil { fmt.Println(err) return } fmt.Println(string(body)) }