定制 edytajordan/openweather 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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.

统计信息

  • 总下载量: 12
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-08-30

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固