Can anyone verify that the service is up and running ?
Trying to do simple api call but for some reason it's returning me to main page...
def recomendation(listing_it): endpoint = f"https://svcs.ebay.com/services/selling/listingrecommendation/v1/item/{listing_it}/itemRecommendations" headers = {"Authorization": "Bearer {}".format(myDB.fetch_one_field("ebay_promoted_listings_token"))} response = requests.get(endpoint, headers=headers)