Skip to content

Two-Column Layout Example

If an OAuth error is encountered, it’ll be a JSON encoded array similar to:
OAuth error
1
2
3
4
{
"error": "invalid_grant",
"error_description": "The access token provided has expired."
}
### Code Blocks in Content Tabs === "Python"
def main():
    print("Hello world!")

if __name__ == "__main__":
    main()
=== "JavaScript"
function main() {
    console.log("Hello world!");
}

main();