承接 shrestharikesh/ebay-sdk-php 相关项目开发

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

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

shrestharikesh/ebay-sdk-php

最新稳定版本:v1.0.0

Composer 安装命令:

composer require shrestharikesh/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.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: (Apache-2.0 and MIT) d1567b7d5bbfdf948345d64dc5a5087ae870eaf0
  • 更新时间: 2024-03-18