Skip to content
Merged
Changes from 1 commit
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
Next Next commit
Backport stand-alone sample PR 5
  • Loading branch information
rayluo authored Oct 28, 2019
commit f25b3eae5f3f6ef417f79238e646c988f7c51850
2 changes: 1 addition & 1 deletion sample/confidential_client_secret_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
graph_data = requests.get( # Use token to call downstream service
config["endpoint"],
headers={'Authorization': 'Bearer ' + result['access_token']},).json()
print("Graph API call result: " + str(graph_data))
print("Graph API call result: %s" % json.dumps(graph_data, indent=2))

else:
print(result.get("error"))
Expand Down