davidtsadler / ebay-sdk-php

An eBay SDK for PHP. Use the eBay API in your PHP projects.
Apache License 2.0
349 stars 341 forks source link

Identical id custom categories of the store. #101

Closed hiromant closed 7 years ago

hiromant commented 7 years ago

I get categories from the ebay store. But all custom categories have the same id. Why are the id categories identical? How to get different id categories? Screenshot: https://i.imgur.com/gFDEzdd.png

davidtsadler commented 7 years ago

It looks like you are using a 32 bit version of PHP. This means that the largest possible integer value is 2147483647. Since eBay will return category IDs that are larger, for example 51874727017, you are going to have to switch to a 64 bit version of PHP as documented in the requirements for the SDK.

hiromant commented 7 years ago

Thanks for help :)

medigeek commented 6 years ago

@davidtsadler Would be nice to have an informative error about this issue. Thank you for all your work so far! :)