Skip to content

Commit 2f60b06

Browse files
committed
Shopping API fix. Offers now available. Revenue model IS ON!
1 parent d512dd2 commit 2f60b06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/shop.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def flipkart_offers():
88
url = 'https://affiliate-api.flipkart.net/affiliate/offers/v1/dotd/json'
99
headers = {
1010
'Fk-Affiliate-Id': 'shubhamgr1',
11-
'Fk-Affiliate-Token': 'd6935b0e76604db383d6421eda50a0ea'
11+
'Fk-Affiliate-Token': '0364458d8d3a4c51a3d13b2192eaea58'
1212
}
1313

1414
r = requests.get(url, headers=headers)
@@ -33,7 +33,7 @@ def flipkart_search(query):
3333
url = 'https://affiliate-api.flipkart.net/affiliate/search/json?query=' + str(query) + '&resultCount=30'
3434
headers = {
3535
'Fk-Affiliate-Id': 'shubhamgr1',
36-
'Fk-Affiliate-Token': 'd6935b0e76604db383d6421eda50a0ea'
36+
'Fk-Affiliate-Token': '0364458d8d3a4c51a3d13b2192eaea58'
3737
}
3838

3939
r = requests.get(url, headers=headers)

0 commit comments

Comments
 (0)