Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions twitter_ads/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Copyright (C) 2015 Twitter, Inc.


VERSION = (11, 0, 0)
API_VERSION = '11'
VERSION = (12, 0, 0)
API_VERSION = '12'

from twitter_ads.utils import get_version

Expand Down
4 changes: 2 additions & 2 deletions twitter_ads/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
class Request(object):
"""Generic container for all API requests."""

_DEFAULT_DOMAIN = 'https://ads-api.twitter.com'
_SANDBOX_DOMAIN = 'https://ads-api-sandbox.twitter.com'
_DEFAULT_DOMAIN = 'https://ads-api.x.com'
_SANDBOX_DOMAIN = 'https://ads-api-sandbox.x.com'

_HTTP_METHOD = [
'get',
Expand Down