skip to Main Content

ebay finding api finditemsbykeywords pagination problem – Ebay API

I tried the following calls: https://svcs.ebay.com/services/search/FindingService/v1?X-EBAY-SOA-OPERATION-NAME=findItemsByKeywords&SERVICE-VERSION=1.13.0&keywords=waschbecken&RESPONSE-DATA-FORMAT=JSON&GLOBAL-ID=EBAY-DE&outputSelector(0)=ItemSpecifics&paginationInput.entriesPerPage=100&paginationInput.pageNumber=2 then on the ebay API explorer for the post request body, <findItemsByKeywordsRequest xmlns="http://www.ebay.com/marketplace/search/v1/services"> <keywords>waschbecken</keywords> <paginationInput> <entriesPerPage>100</entriesPerPage> <pageNumber>2</pageNumber> </paginationInput> </findItemsByKeywordsRequest> but I do not get 100 searchResult count per page, in Postman I get 32…

VIEW QUESTION

Laravel EBay API Client Credential Grant Request Gives Error, Unsupported Grant Type

I am using Laravel 8 and the Http Client library. Here is my code: public function mintNewApplicationAccessToken() { $response = Http::withHeaders([ 'Accept' => 'application/json', 'Content-Type' => 'application/x-www-form-urlencoded', 'Authorization' => 'Basic ' . base64_encode(config('ebay.ebay_client_id_sandbox') . ":" . config('ebay.ebay_client_secret_sandbox')), ])->post(config('ebay.ebay_token_request_endpoint_url_sandbox'), [ 'grant_type'…

VIEW QUESTION

eBay Oauth token – unable to exchange authorization code for a User access token

I am getting {"error":"invalid_client","error_description":"client authentication failed"} 401 response. I did manage to get a user consent (docs: https://developer.ebay.com/api-docs/static/oauth-authorization-code-grant.html) by accessing the url manually and logging in to my account: import requests, urllib, base64 my_AppID = "someAppID" my_Ru_Name = "someRuName" scope…

VIEW QUESTION

Ebay Token and GetDealItems API Call Issue – Ebay API

I'm trying to access GetDealItems API and i have a nightmare to get this working. Even though I use the valid client_id','client_secret','ruName' i keep getting {'error': 'invalid_client', 'error_description': 'client authentication failed'} below is the ebay doc https://developer.ebay.com/api-docs/buy/deal/resources/deal_item/methods/getDealItems I guess i…

VIEW QUESTION
Back To Top
Search