定制 benmorel/ebay-sdk-php 二次开发

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

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

benmorel/ebay-sdk-php

最新稳定版本:19.3.2

Composer 安装命令:

composer require benmorel/ebay-sdk-php

包简介

An eBay SDK for PHP. Fork of dts/ebay-sdk-php with support for PHP 8.

README 文档

README

This is a fork of the original dts/ebay-sdk-php by @davidtsadler, with support for PHP 7.3, PHP 7.4 and PHP 8, and compatibility with Guzzle 7.

The original project has been officially abandoned in February 2020.

I'm planning to maintain this fork in the short term. The aim is not to keep it up to date with the latest eBay API versions, but to provide a solution for a smooth upgrade of existing apps to PHP 8. New users should seek a better SDK for PHP.

Build Status Latest Stable Version Total Downloads License

This project enables PHP developers to use the eBay API in their PHP code, and build software using services such as Finding, Trading, Shopping, etc.

This is a personal project that was originally developed by David T. Sadler, who decided to create this project to make up for the lack of an official SDK for PHP. It is in no way endorsed, sponsored or maintained by eBay.

Features

Requirements

  • PHP 7.2+ or PHP 8.0+ with the following extensions:
    • curl
    • libxml
  • 64 bit version
  • SSL enabled on the cURL extension so that https requests can be made.

Installation

The SDK can be installed with Composer:

composer require benmorel/ebay-sdk-php

Example

Get the official eBay time

<?php

require 'vendor/autoload.php';

use DTS\eBaySDK\Shopping\Services;
use DTS\eBaySDK\Shopping\Types;

// Create the service object.
$service = new Services\ShoppingService();

// Create the request object.
$request = new Types\GeteBayTimeRequestType();

// Send the request to the service operation.
$response = $service->geteBayTime($request);

// Output the result of calling the service operation.
printf(
    "The official eBay time is: %s\n",
    $response->Timestamp->format('H:i (\G\M\T) \o\n l jS Y')
);

More examples can be found in the ebay-sdk-examples repository.

License

Licensed under the Apache Public License 2.0.

Copyright 2016 David T. Sadler.

统计信息

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

GitHub 信息

  • Stars: 32
  • Watchers: 3
  • Forks: 346
  • 开发语言: PHP

其他信息

  • 授权协议: (Apache-2.0 and MIT) 520cb74e6017f25468b3fcd7a1e5a10a5a880638
  • 更新时间: 2020-12-04