Hi Tima,
Thank you for the response. I could swear I tried that method. I removed my apps authorization from my shop and fetched a new set of oauth keys and re-validated the app. I tried your code with the new keys and i am now pulling the sku from the variations in the inventory for a listing. Just baby steps at this point but progress is being made. Thank you again for your reply.
btw, here's my test code...
import json
import requests
from requests_oauthlib import OAuth1Session
api_key = "*****"
shared_secret = "*****"
oauth_token = "*****"
oauth_token_secret = "*****"
etsy = OAuth1Session(client_key=api_key,
client_secret=shared_secret,
resource_owner_key=oauth_token,
resource_owner_secret=oauth_token_secret)
list_text = r.json()
list_id = str(list_text['results'][-1]['listing_id'])
list_title = list_text['results'][-1]['title']
print ("list_id = ", list_id, "-", list_title)
r = etsy.get(e_url)
list_text = r.json()
for inpart in list_text['results']['products']:
print (inpart['sku'],"-",inpart['property_values'][0]['values'][0]," - ",inpart['offerings'][0]['quantity']," - ",inpart['offerings'][0]['price']['currency_formatted_raw'])