File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 3
3
"""
4
4
REQUEST_TIMEOUT = 100
5
5
CONNECTION_TIMEOUT = 30
6
- BASE_URL = 'https://graph.microsoft.com/v1.0 '
6
+ BASE_URL = 'https://graph.microsoft.com/'
7
7
SDK_VERSION = '0.0.3'
8
8
9
9
# Used as the key for AuthMiddlewareOption in MiddlewareControl
Original file line number Diff line number Diff line change @@ -18,11 +18,12 @@ class GraphSession(Session):
18
18
def __init__ (self ,
19
19
credential : TokenCredential ,
20
20
scopes : [str ] = ['.default' ],
21
- middleware : list = []
21
+ middleware : list = [],
22
+ api_version : str = '1.0'
22
23
):
23
24
super ().__init__ ()
24
25
self ._append_sdk_version ()
25
- self ._base_url = BASE_URL
26
+ self ._base_url = BASE_URL + '/' + api_version
26
27
27
28
auth_handler = AuthorizationHandler (credential , scopes )
28
29
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ def test_creates_instance_of_session(self):
20
20
self .assertIsInstance (self .requests , Session )
21
21
22
22
def test_has_graph_url_as_base_url (self ):
23
- self .assertEqual (self .requests ._base_url , BASE_URL )
23
+ self .assertNotEqual (self .requests ._base_url , BASE_URL )
24
24
25
25
def test_has_sdk_version_header (self ):
26
26
self .assertTrue ('sdkVersion' in self .requests .headers )
@@ -37,7 +37,7 @@ def test_initialized_with_middlewares(self):
37
37
38
38
@responses .activate
39
39
def test_builds_graph_urls (self ):
40
- graph_url = BASE_URL + '/me'
40
+ graph_url = self . requests . _base_url + '/me'
41
41
responses .add (responses .GET , graph_url , status = 200 )
42
42
43
43
self .requests .get ('/me' )
You can’t perform that action at this time.
0 commit comments