owen/sc-code-challenge

Smooth Commerce的代码挑战,向Giphy API发起请求

dev-master 2021-03-23 19:50 UTC

This package is not auto-updated.

Last update: 2024-10-01 12:06:05 UTC


README

一个向Giphy API发起请求的包

Composer

require”: {
    ...
    "owen/sc-code-challenge": "dev-master",
    
}

并运行

compsoer install

快速示例

搜索GIF

require_once __DIR__ . '/vendor/autoload.php'; // Autoload files using Composer autoload

use Giphy\GiphyApi;
GiphyApi::searchGifs(${Your Giphy API_key}, 'cats', 2);

搜索贴纸

require_once __DIR__ . '/vendor/autoload.php'; // Autoload files using Composer autoload

use Giphy\GiphyApi;
GiphyApi::searchStickers(${Your Giphy API_key}, 'cheeseburgers', 2);