首页 > 其他分享 >ebay站点码类型 SiteCodeType(令牌) 各个国家的网址,日本 德国等等

ebay站点码类型 SiteCodeType(令牌) 各个国家的网址,日本 德国等等

时间:2023-06-09 13:31:49浏览次数:64  
标签:令牌 SiteCodeType site ebay abbreviation currency www ID


SiteCodeType(令牌)

易趣网站(按每个用户居住的国家/地区),用户注册在这些网站上,并且可以通过交易API列出项目。

使用SiteCodeType的类型:

IntegratedMerchantCreditCardInfo类型、ItemType、MembershipDetailType、PerformancedAshBoard类型、补偿策略同意类型、SellerType、SiteDetailsType、TransactionType、UserType、VeROSiteDetailType

使用SiteCodeType的一个或多个值的调用:

AddFixedPriceItem、AddItem、AddItems、GetAllBidders、GetBidderList、GetDistance、GeteBayDetails、GetItem、GetItemTransactions、GetMyeBayBuying、GetOrders、GetOrder Transactions,GetSellerDashboard、GetSellerEvents、GetSeller列表、GetSelllerTransaction、GetUser、GetVeroreAsOnConcodeDetails、RelistFixedPriceItem,RelistItem、VerifyAddFixed价格项、VerifAddItem

SiteCodeType ( token )

eBay sites (by the country in which each resides) on which a user is registered and on which items can be listed through the Trading API.

Types that use SiteCodeType:

IntegratedMerchantCreditCardInfoTypeItemTypeMembershipDetailTypePerformanceDashboardTypeRecoupmentPolicyConsentTypeSellerTypeSiteDetailsTypeTransactionTypeUserTypeVeROSiteDetailType

Calls that use one or more values of SiteCodeType:

AddFixedPriceItemAddItemAddItemsGetAllBiddersGetBidderListGetDisputeGeteBayDetailsGetItemGetItemTransactionsGetMyeBayBuyingGetOrdersGetOrderTransactionsGetSellerDashboardGetSellerEventsGetSellerListGetSellerTransactionsGetUserGetVeROReasonCodeDetailsRelistFixedPriceItemRelistItemVerifyAddFixedPriceItemVerifyAddItemVerifyRelistItem

SiteCodeType - API Reference - Trading API

Enumeration Values

Value

Description

Australia

Australia, site ID 15, abbreviation AU, currency AUD.

(http://www.ebay.com.au)

Austria

Austria, site ID 16, abbreviation AT, currency EUR.

(http://www.ebay.at)

Belgium_Dutch

Belgium (Dutch), site ID 123, abbreviation BENL, currency EUR.

(http://www.ebay.be)

Belgium_French

Belgium (French), site ID 23, abbreviation BEFR, currency EUR.

(http://www.ebay.be)

Canada

Canada, site ID 2, abbreviation CA, currencies CAD and USD.

(http://www.ebay.ca)

CanadaFrench

Canada French, site ID 210, abbreviation CAFR, currencies CAD and USD.

CustomCode

Reserved for internal or future use.

eBayMotors

Although Site ID 100 is still valid in APIs, eBay Motors US is no longer its own site, but just a vertical within the eBay US site.

France

France, site ID 71, abbreviation FR, currency EUR.

(http://www.ebay.fr)

Germany

Germany, site ID 77, abbreviation DE, currency EUR.

(http://www.ebay.de)

HongKong

Hong Kong, site ID 201, abbreviation HK, currency HKD.

(http://www.ebay.com.hk)

India

India, site ID 203, abbreviation IN, currency INR.

(http://www.ebay.in)

Ireland

Ireland, site ID 205, abbreviation IE, currency EUR.

(http://www.ebay.ie)

Italy

Italy, site ID 101, abbreviation IT, currency EUR.

(http://www.ebay.it)

Malaysia

Malaysia, site ID 207, abbreviation MY, currency MYR.

(http://www.ebay.com.my)

Netherlands

Netherlands, site ID 146, abbreviation NL, currency EUR.

(http://www.ebay.nl)

Philippines

Philippines, site ID 211, abbreviation PH, currency PHP.

(http://www.ebay.ph)

Poland

Poland, site ID 212, abbreviation PL, currency PLN.

(http://www.ebay.pl)

Russia

Russia, site ID 215, abbreviation RU, currency RUB. Sellers must use Merchant Integration Platform (MIP) to create and revise listings on the Russia site. Russian listings cannot be created or revised through the Trading API's add and revise calls, so 'Russia' would not be a valid value to pass in through Item.Site field of an Add or Revise Trading API call.

Singapore

Singapore, site ID 216, abbreviation SG, currency SGD.

(http://www.ebay.com.sg)

Spain

Spain, site ID 186, abbreviation ES, currency EUR.

(http://www.ebay.es)

Switzerland

Switzerland, site ID 193, abbreviation CH, currency CHF.

(http://www.ebay.ch)

UK

United Kingdom, site ID 3, abbreviation UK, currency GBP.

(http://www.ebay.co.uk)

US

USA, site ID 0, abbreviation US, currency USD.

(http://www.ebay.com)

  * See the Enumeration Index to see exact use of each enumeration value in the API.


标签:令牌,SiteCodeType,site,ebay,abbreviation,currency,www,ID
From: https://blog.51cto.com/u_16120231/6447029

相关文章

  • 如何设计一个速率限制器(令牌桶/漏桶/固定窗口/滑动窗口)
    在网络系统中,速率限制器被用来控制客户端或服务发送的流量的速率。在HTTP领域,速率限制器限制了在指定周期内允许发送的客户端请求的数量。如果API请求的数量超过了速率限制器定义的阈值,所有超出的调用都会被阻止。以下是一些示例:用户每秒钟最多只能发布2篇帖子。你可以每天......
  • Springboot+Guava实现单机令牌桶限流
    令牌桶算法系统会维护一个令牌(token)桶,以一个恒定的速度往桶里放入令牌(token),这时如果有请求进来想要被处理,则需要先从桶里获取一个令牌(token),当桶里没有令牌(token)可取时,则该请求将被拒绝服务。令牌桶算法通过控制桶的容量、发放令牌的速率,来达到对请求的限制。=================......
  • JWT —— token令牌
    JWT一、介绍全称:JSONWebToken,用于对应用程序上的用户进行身份标记本质上就是一个经过加密处理与校验处理的字符串,它由三部分组成:头信息(Header):记录令牌类型和签名算法,例如:{"alg":"HS256","typ":"JWT"}有效载荷(Payload):记录一些自定义能够区......
  • JWT令牌工具类
     importio.jsonwebtoken.Claims;importio.jsonwebtoken.Jwts;importio.jsonwebtoken.SignatureAlgorithm;importjava.util.Date;importjava.util.Map;publicclassJwtUtils{privatestaticStringsignKey="itheima";privatestaticLongexpir......
  • Blackbox_exporter的HTTP模块配置Bearer令牌
    如果要监控需要携带token才能访问的接口,您可以使用Blackbox_exporter的HTTP模块配置Bearer令牌。以下是一个示例:安装和配置Blackbox_exporter。创建一个名为auth.yml的配置文件,并将其放置在Blackbox_exporter配置文件夹中。在auth.yml文件中,添加类似以下的配置:modules:  http_2x......
  • 解决上传md文件时出现的“<Fault 401: '请配置正确的用户名与访问令牌(access token),
    使用的工具:pycnbolg下载地址:https://github.com/dongfanger/pycnblog具体操作按这位大神的博客:如何在博客园上传markdown文件-NotYourferry-博客园(cnblogs.com)出现报错如图:偶然看到这两位的评论:于是我将config.yaml中的password改成了我的令牌,就上传成功了。......
  • Redis+lua 实现令牌桶限流算法
    使用lua:=redis.NewScript(script)args[0]=strconv.Itoa(fillInterval)args[1]=strconv.FormatInt(time.Now().Unix()*1000,10)res,err:=lua.Run(context.Background(),utils.Red,[]string{"RateLimit"},args[0],args[1]).Result()--定义返回值res[1]......
  • 令牌桶测速
       ......
  • Struts_token的令牌机制
       通常在普通的操作当中,我们不需要处理重复提交的,而且有很多方法来防止重复提交。比如在登陆过程中,通过使用redirect,可以让用户登陆之上重定向到后台首页界面,当用户刷新界面时就不会触发重复提交了。或者使用token,隐藏在表单中,当提交时进行token验证,验证失败也不让提交。这......
  • SpringBoot 服务接口限流-AOP令牌桶
    前言在开发高并发系统时有三把利器用来保护系统:缓存、降级和限流。限流可以认为服务降级的一种,限流通过限制请求的流量以达到保护系统的目的。一般来说,系统的吞吐量是可以计算出一个阈值的,为了保证系统的稳定运行,一旦达到这个阈值,就需要限制流量并采取一些措施以完成限制流量的目的......