Skip to content

Commit 1f45f2d

Browse files
Tyler Lastovichgitbook-bot
Tyler Lastovich
authored andcommitted
GitBook: [#80] Updated quick start with auth search
1 parent c548c0c commit 1f45f2d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

godel-python-sdk/quickstart.md

+5
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,17 @@ from godel import GoldenAPI
2020

2121
goldapi = GoldenAPI()
2222

23+
# Operations that do not require authentication
2324
# Retrieve existing triple predicates
2425
goldapi.predicates()
2526

2627
# Retrieve existing entity templates
2728
goldapi.templates()
2829

30+
# With signed authentication
31+
# Find your JSON Web Token(JWT) at "https://dapp.golden.xyz/profile" after signing in
32+
goldapi = GoldenAPI(jwt_token=<your_token>)
33+
2934
# Search and query for specific entities
3035
goldapi.entity_search(name="Golden")
3136
```

0 commit comments

Comments
 (0)