Skip to content

Commit 1cc45df

Browse files
authored
1 parent f25b3ea commit 1cc45df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sample/confidential_client_certificate_sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
graph_data = requests.get( # Use token to call downstream service
6868
config["endpoint"],
6969
headers={'Authorization': 'Bearer ' + result['access_token']},).json()
70-
print("Graph API call result: " + str(graph_data))
70+
print("Graph API call result: %s" % json.dumps(graph_data, indent=2))
7171
else:
7272
print(result.get("error"))
7373
print(result.get("error_description"))

0 commit comments

Comments
 (0)