承接 gpsinsight/api-client 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

gpsinsight/api-client

Composer 安装命令:

composer require gpsinsight/api-client

包简介

GPS Insight API client library

README 文档

README

Latest Version on Packagist Software License Build Status

This is the official PHP client library for interacting with the GPS Insight API (V2).

GPS Insight logo

GPS Insight provides vehicle fleet GPS tracking and FMCSA-compliant electronic logging devices (ELD) for regulating hours of service (HOS). GPS Insight's API (V2) provides a programmatic way to push your fleet's data from our system to your back-end systems (e.g., ERP, Dispatch, CRM). By using our API you can effortlessly integrate your fleet's data into your back-end systems to provide transparency into payroll, fuel card transactions, additional documentation, asset management, and more.

The GPS Insight API documentation is hosted on our website. Be sure to sign up for an account and follow the directions to get API credentials before using this library.

Installation

This package is hosted on Packagist and is installable via Composer.

Requirements

  • PHP version 5.5 or greater (5.6+ recommended)
  • Composer (for installation)
  • Guzzle is installed automatically as a dependency and requires one of the following to make HTTP requests:
    • A recent version of cURL (minimum 7.19.4) compiled with OpenSSL and zlib.
    • Enable allow_url_fopen in your system's php.ini.

Installing Via Composer

Run the following command (assuming composer is available in your PATH):

$ composer require gpsinsight/api-v2-client

This will set the GPS Insight API Client Library as a dependency in your project and install it.

When bootstrapping your application, you will need to require 'vendor/autoload.php' in order to setup autoloading for the GPS Insight API Client Library and any of your other Composer-installed packages.

Basic Usage

Code

use GpsInsight\Api\V2\GpsInsight;

// Create and configure an SDK object
$gpsInsight = new GpsInsight([
    'username'  => 'johndoe3000',
    'app_token' => '490f5ed342ca8',
]);

// Call the "create" method of the "driver" service
// Note: API authentication is applied automatically by the client library
$result = $gpsInsight->driver->create([
    'lastname' => 'Lindblom',
    'firstname' => 'Jeremy',
    'email' => 'jlindblom@example.com',
    'timezone' => 'US/Arizona',
]);

print_r($result->getData());

Output

Array
(
    [id] => 4551485
    [message] => Driver added
)

Additional Usage

If you are using an IDE like PhpStorm that supports intellisense, the names of services and operations will autocomplete for you. For parameters, you should consult the official GPS Insight API documentation.

Concepts

Classes

All classes are in the root namespace of GpsInsight\Api\V2.

  • GpsInsight – The starting point to the library (as seen above in the example). Users can access the various available services via readonly, intellisense-ready properties (e.g., $gpsInsight->driver, $gpsInsight->landmark)
  • ServiceClient – Encapsulates APIs for a particular service (e.g., $gpsInsight->driver->create())
  • Client – A guzzlehttp/command-powered client that is used by the GpsInsight and various ServiceClient classes
  • Result – An ArrayAccessible object that encapsulates the parsed data from an API response. It is returned as the result of any API call (e.g., $result = $gpsInsight->driver->create(); echo $result['message'];)
  • Services – A class containing the list of valid services names
  • Middleware – The Middleware directory contains guzzlehttp/command middleware that are used to perform transformations on the command or result prior to them being serialized to a request or response. For example, auth is handled via a middleware, as is applying an app channel.

Configuration

When instantiating the GpsInsight class, you must provide configuration options to setup the API client. The following settings are allowed:

  • app_token (string, conditionally required) – GPS Insight API "App Token", which acts as a credential for a specific application
  • channel (string, recommended) – An identifier to tag your requests with for your application. You can then retrieve stats about your application's API usage with the channel APIs
  • endpoint (string, optional) – Base URL endpoint for accessing the GPS Insight API. Defaults to the production GPS Insight API endpoint: "https://api.gpsinsight.com"
  • http_handler (callable, optional) – Custom or shared Guzzle HTTP handler. See docs for handler in the Guzzle documentation for "Creating a Client"
  • http_options (associative array, optional) – A set of Guzzle HTTP request options. See docs for Request Options in the Guzzle Documentation
  • password (string, conditionally required) – GPS Insight API account password
  • session_token (string, conditionally required) – GPS Insight API "session token"
  • token_cache (TokenCacheInterface, recommended) – A token cache for storing/retrieving session tokens.
  • username (string, required) – GPS Insight API account username
  • version (string, recommended) – A version number to tag your requests with for your application. Use this with in combination with channel
  • wire_log (bool|LoggerInterface, optional) – Use this to enable wire logging for debugging purposes. Set to true for the default logger that writes to STDOUT, or provide a PSR-3 compliant LoggerInterface

You must provide at least one of app_token, password, or session_token along with your username to authenticate to the GPS Insight API. For more information about API credentials, please read the GPS Insight API documentation.

Advanced Example

use GpsInsight\Api\V2\GpsInsight;
use GpsInsight\Api\V2\TokenCache\CallbackCache as TokenCallbackCache;

// Create and configure an SDK object
$gpsInsight = new GpsInsight([
    'username'  => 'johndoe3000',
    'app_token' => '490f5ed342ca8',
    'channel' => 'my_custom_app',
    'version' => '2.10.1',
    'token_cache' => new TokenCallbackCache(
        function ($key) {
            return isset($_SESSION['gpsinsight_tokens'][$key])
                ? $_SESSION['gpsinsight_tokens'][$key]
                : null;
        },
        function ($key, $token) {
            $_SESSION['gpsinsight_tokens'][$key] = $token;
        }
    ),
]);

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email websecurity@gpsinsight.com directly instead of using the issue tracker. This allows us to take appropriate actions to mitigate the issues as quickly as possible.

Credits

License

The MIT License (MIT). Please see License File for more information.

gpsinsight/api-client 适用场景与选型建议

gpsinsight/api-client 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.29k 次下载、GitHub Stars 达 5, 最近一次更新时间为 2017 年 03 月 28 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 gpsinsight/api-client 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 gpsinsight/api-client 我们能提供哪些服务?
定制开发 / 二次开发

基于 gpsinsight/api-client 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 1.29k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 5
  • 点击次数: 10
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 5
  • Watchers: 5
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: Apache
  • 更新时间: 2017-03-28