Download the PHP package xskit/passport-client without Composer

On this page you can find all versions of the php package xskit/passport-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package passport-client

passport-client

基于Laravel passport 的授权API访问的 Http客户端包装器

功能:

安装

引入

Laravel

安装后使用 Laravel 自动发现,包将自动注册自己。

发布配置文件

Lumen

对于Lumen的使用,服务提供者应该手动注册,bootstrap/app.php 如下面所示:

手动复制配置文件 passport_clinet.php 到 config 目录下。

只有一个服务端时,使用 .env 配置就可以了,要是有多个,需要 config/passport_client.php 配置目录,添加 其它 驱动配置

引入PassportClient 实例

有两种方式:

  1. 首先通过容器依赖注入\XsKit\PassportClient\Client
  2. PassportClient Facade 静态调用的方式使用

大部分请求都返回 实现了 \XsKit\PassportClient\ContractsHttpResponseContract 的实例

使用 Facade 的说明

获取授权令牌

一、快速请求

base_uri query(URI) 结果
http://foo.com /bar http://foo.com/bar
http://foo.com/foo /bar http://foo.com/bar
http://foo.com/foo bar http://foo.com/bar
http://foo.com/foo/ bar http://foo.com/foo/bar
http://foo.com http://baz.com http://baz.com
http://foo.com/?bar bar http://foo.com/bar

二、API 的封装

一、 创建一个 实现 XsKit\Contracts\ApiContract 的类,比如这样:

三、 使用 PSR-7 Request GuzzleHttp\Psr7\Request

请求响应说明

\XsKit\PassportClient\Http\HttpResponse 实现了 \XsKit\PassportClient\ContractsHttpResponseContract

// 获取响应数据 $response->getData();

如果接收到的数据是 可转换为 array 类型时,可以使用以下方法

例如,写一个这样的自定义响应数据处理类,做为 response_handle 默认配置项的替换:


All versions of passport-client with dependencies

PHP Build Version
Package Version
Requires php Version ^7.1.3
ext-json Version *
guzzlehttp/guzzle Version ~6.0
illuminate/support Version ~5.5
illuminate/contracts Version ~5.5
illuminate/http Version ~5.5
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package xskit/passport-client contains the following files

Loading the files please wait ....