edytajordan/openweather
Composer 安装命令:
composer require edytajordan/openweather
包简介
Laravel Wrapper for OpenWeather API using Guzzle HTTP
README 文档
README
This is a Laravel style wrapper for the OpenWeather API. For more information regarding request and response formats, visit: https://openweathermap.org/
Install
Require this package with composer using the following command:
$ composer require edytajordan/openweather
After updating composer, add the service provider to the providers array in config/app.php
/*
* Package Service Providers...
*/
EdytaJordan\OpenWeather\OpenWeatherServiceProvider::class,
To register a facade accessor, add the following to config/app.php aliases array
"OpenWeather" => EdytaJordan\OpenWeather\Facades\OpenWeather::class,
Configuration
Add the following line to the .env file:
OPEN_WEATHER_KEY=<your_open_weather_api_key>
Usage
For full details of response formats, visit: https://openweathermap.org/api
Example Case: Get 'wind' information only for given zipcode. According to OpenWeather API final url passed should be:
$url = api.openweathermap.org/data/2.5/weather?zip={zip code},{country code}&appid={your api key}
Params
Pass an array of params for desired response. Below example will return WIND only from the weather information by requested zip code. URL Builder in OpenWeather class will build the url based on provided params. Also, it will include only the items requested or exclude items from the response.
Optionaly, you can just pass 'custom_url' (final url) and the builder will skip building url and instead just validate and get a response.
//example wih options to build URL
public function wind(Request $request, $zipcode)
{
//passing all the options as an example only, please refer to documentation
$options = [
'custom_url' => null, //if not provided, url will be built from other options
'pro' => false, //if not provided, false is default
'type' => 'weather', //weather, forecast, box, group or onecall (please refer to API documentation)
'lat' => null,
'lon' => null,
'location' => 'zip', //zip, city name, city id
'location_value' => $zipcode,
'country_code' => '', //if not provided, default is 'us'
'includeOnly' => ['wind'], //RESPONSE WILL RETURN INCLUDED ITEMS ONLY (please refer to API documentation for examples of response params (fields) )
'excludeOnly' => [], //RESPONSE WILL RETURN EXCLUDED ITEMS ONLY please refer to API documentation for examples of response params (fields)
];
return json_encode(OpenWeather::getWeather($options));
}
//example wih passing custom URL
public function wind(Request $request, $zipcode)
{
//passing all the options as an example only, please refer to documentation
$options = [
'custom_url' => 'api.openweathermap.org/data/2.5/weather?zip='.$zipcode.'&appid={your api key}',
'includeOnly' => ['wind'], //RESPONSE WILL RETURN INCLUDED ITEMS ONLY (please refer to API documentation for examples of response params (fields) )
];
return json_encode(OpenWeather::getWeather($options));
}
JSON Response
{
"wind": {
"speed": 2.1,
"deg": 0
}
}
License
The MIT License (MIT). Please see License File for more information.
edytajordan/openweather 适用场景与选型建议
edytajordan/openweather 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 12 次下载、GitHub Stars 达 0, 最近一次更新时间为 2020 年 08 月 30 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「api」 「Guzzle」 「laravel」 「weather」 「forecast」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 edytajordan/openweather 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 edytajordan/openweather 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 edytajordan/openweather 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PSR-7 compatible library for making CRUD API endpoints
Cloudflare Middleware For Guzzle
Simplifies working with holaluz API endpoints
Wrapper for Slack Web API
HipChat API Client
A few tools for working with Guzzle
统计信息
- 总下载量: 12
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 5
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-08-30