-
-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
63534b7
commit 6521046
Showing
6 changed files
with
46 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
from datetime import timedelta, datetime | ||
|
||
import pytest | ||
|
||
from sp_api.api import Tokens, Orders | ||
from sp_api.base import SellingApiBadRequestException, Marketplaces | ||
|
||
# | ||
# def test_get_token_for_bulk_orders(): | ||
# with pytest.raises(SellingApiBadRequestException) as info: | ||
# res = Tokens().create_restricted_data_token(restrictedResources=[ | ||
# { | ||
# "method": "GET", | ||
# "path": "/orders/v0/orders", | ||
# "dataElements": ["buyerInfo", "shippingAddress"] | ||
# } | ||
# ]) | ||
# print(res) | ||
# | ||
# | ||
# def test_get_order_with_token(): | ||
# res = Orders(restricted_data_token='foo').get_orders(CreatedAfter=(datetime.now() - timedelta(days=10)).isoformat()) | ||
# print(res) |