litermi/external-request 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

litermi/external-request

最新稳定版本:1.0.28

Composer 安装命令:

composer require litermi/external-request

包简介

The External Request is a package to send request to others api-rest .

README 文档

README

Software License

About

The External Request is a package to send request to others api-rest .

Tutorial how create composer package

Installation

Require the litermi/external-request package in your composer.json and update your dependencies:

composer require litermi/external-request

Configuration

set provider

'providers' => [
    // ...
    Litermi\ExternalRequest\Providers\ServiceProvider::class,
],

The defaults are set in config/external-request.php. Publish the config to copy the file to your own config:

php artisan vendor:publish --provider="Litermi\ExternalRequest\Providers\ServiceProvider"

Note: this is necessary to you can change default config

Usage

use Litermi\ExternalRequest\ExternalServiceRequestService;

$baseUri = "yourdomain.com"
$requestPath = "/api/users"
$formParams = [];
$headers = [];

$method = "GET";
$response = ExternalServiceRequestService::execute(
    $baseUri,
    $method,
    $requestPath,
    $formParams,
    $header
);


$method = "POST";
$formParams = ["username":"cirel", "password":"you"];
$responsePost =  ExternalServiceRequestService::execute(
    $baseUri,
    $method,
    $requestPath,
    $formParams,
    $headers
);

License

Released under the MIT License, see LICENSE.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-04-13