Home php教程 php手册 php读取百度天气API Json数据

php读取百度天气API Json数据

Jun 06, 2016 pm 07:55 PM
api json php weather data Baidu Simple read

本文简单介绍如何利用百度的车联网API读到JSON数据 官方手册 http://developer.baidu.com/map/wiki/index.php?title=car/api/weather#.E8.BF.94.E5.9B.9E.E7.BB.93.E6.9E.9C 今天折腾了好几个小时才把百度API里的天气接口搞明白,说句实在的,百度也够坑的,

本文简单介绍如何利用百度的车联网API读到JSON数据

官方手册

http://developer.baidu.com/map/wiki/index.php?title=car/api/weather#.E8.BF.94.E5.9B.9E.E7.BB.93.E6.9E.9C

今天折腾了好几个小时才把百度API里的天气接口搞明白,说句实在的,百度也够坑的,我第一次试因为选的应用类型是服务器,怎么都验证不了,而且我选了sn验证白名单

第二次我直接用浏览器试了,结果成功读取到json数据,剩下再来解析....


直接上代码吧

<span style="font-size:18px;">

<title> 天气 </title>


<?php require("sn_caculation.php");

//获得查询城市
if ($_POST[&#39;city&#39;])
	echo $_POST[&#39;city&#39;];

$location = $_POST[&#39;city&#39;];
//经过urlcode编码
$location = urlencode($location);

$output = "json";

//设置查询模式
//@param $mode
//默认流浏览器模式
$mode = 0;
switch ($mode){
	case 0:
	$result = browser($output,$location);
	break;
	case 1:
	$result = server($output,$location);
	break;
}

function server($output,$location) {
//服务端(server)测试
	$ak = "xxxxxxx";
	$sk = "xxxxxxx;
	$url = "http://api.map.baidu.com/telematics/v3/weather?ak=%s&location=%s&output=%s&sn=%s";
	$querystring_arrays = array("ak" => $ak, "location" => $location, "output" => $output);</span>
Copy after login
//百度sn算法
	$sn = caculateAKSN($ak, $sk, $url, $querystring_arrays);
	return sprintf($url, $ak, $location, $output, $sn);
}


function browser($output,$location){
//浏览器测试-----
	$ak = "xxxxxxxx";
	$url = "http://api.map.baidu.com/telematics/v3/weather?ak=%s&location=%s&output=%s";
	return sprintf($url, $ak, $location, $output);
}


//$template = http://api.map.baidu.com/telematics/v3/weather?location=%s&output=%s&ak=%s

$weather_contents = file_get_contents($result);
print_r(json_decode($weather_contents));
?>



Copy after login

我从另一处提交的城市,进来之后的操作就像上面这样,这里解释几个地方,ak就是百度应用里的app key,如果是服务器类型的,secret key,浏览器类型的没有,利用百度提供的sn算法进行加密,代码如下:

<?php /**
* @brief 计算SN签名算法
* @param string $ak access key
* @param string $sk secret key
* @param string $url url值,例如: /geosearch/nearby 不能带hostname和querstring,也不能带?
* @param array  $querystring_arrays 参数数组,key=>value形式。在计算签名后不能重新排序,也不能添加或者删除数据元素
* @param string $method 只能为'POST'或者'GET'
*/
function caculateAKSN($ak, $sk, $url, $querystring_arrays, $method = 'GET'){
    if ($method === 'POST'){
        ksort($querystring_arrays);
    }
    $querystring = http_build_query($querystring_arrays);
    return md5(urlencode($url.'?'.$querystring.$sk));
}
?>
Copy after login
这里看半天没看懂,url没有格式啊,啥意思啊,后来才反应过来,因为看了它...为啥会有两个不同的页面....

http://developer.baidu.com/map/index.php?title=lbscloud/api/appendix

请原谅我的智商。

location可以利用urlencode进行转码,免得出错,最后拿到完整的result,利用file_get_contents就可以得到数据了,这里已数组的格式输出的。。。

初学就是蛋精姐虑....哎,就到这了,希望能帮到大家



Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

deepseek web version entrance deepseek official website entrance deepseek web version entrance deepseek official website entrance Feb 19, 2025 pm 04:54 PM

DeepSeek is a powerful intelligent search and analysis tool that provides two access methods: web version and official website. The web version is convenient and efficient, and can be used without installation; the official website provides comprehensive product information, download resources and support services. Whether individuals or corporate users, they can easily obtain and analyze massive data through DeepSeek to improve work efficiency, assist decision-making and promote innovation.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

ai tool recommendation ai tool recommendation Nov 29, 2024 am 11:08 AM

This article introduces six popular AI tools, including Douyin Doubao, Wenxin Yige, Tencent Zhiying, Baidu Feipiao EasyDL, Baidu AI Studio and iFlytek Spark Cognitive Large Model. These tools cover different functions such as text creation, image generation, video editing, and AI model development. Choosing the right AI tool requires consideration of factors such as functional requirements, technical level, and cost budget. These tools provide convenient and efficient solutions for individuals and businesses in need of AI assistance.

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

What are the AI ​​tools? What are the AI ​​tools? Nov 29, 2024 am 11:11 AM

AI tools include: Doubao, ChatGPT, Gemini, BlenderBot, etc.

Another national product from Baidu is connected to DeepSeek. Is it open or follow the trend? Another national product from Baidu is connected to DeepSeek. Is it open or follow the trend? Mar 12, 2025 pm 01:48 PM

DeepSeek-R1 empowers Baidu Library and Netdisk: The perfect integration of deep thinking and action has quickly integrated into many platforms in just one month. With its bold strategic layout, Baidu integrates DeepSeek as a third-party model partner and integrates it into its ecosystem, which marks a major progress in its "big model search" ecological strategy. Baidu Search and Wenxin Intelligent Intelligent Platform are the first to connect to the deep search functions of DeepSeek and Wenxin big models, providing users with a free AI search experience. At the same time, the classic slogan of "You will know when you go to Baidu", and the new version of Baidu APP also integrates the capabilities of Wenxin's big model and DeepSeek, launching "AI search" and "wide network information refinement"

See all articles