Skip to content

Commit 2a0a7ba

Browse files
committed
updating README
1 parent e3f1ee6 commit 2a0a7ba

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ netlifyIdentity.close();
7171

7272
// Log out the user
7373
netlifyIdentity.logout();
74+
// refresh the user's JWT
75+
// Note: this method returns a promise.
76+
netlifyIdentity.refresh().then((jwt)=>console.log(jwt))
7477
```
7578

7679
#### A note on script tag versioning
@@ -113,6 +116,10 @@ netlifyIdentity.close();
113116
// Log out the user
114117
netlifyIdentity.logout();
115118

119+
// refresh the user's JWT
120+
// Note: this method returns a promise.
121+
netlifyIdentity.refresh().then((jwt)=>console.log(jwt))
122+
116123
// Access the underlying GoTrue JS client.
117124
// Note that doing things directly through the GoTrue client brings a risk of getting out of
118125
// sync between your state and the widget’s state.

0 commit comments

Comments
 (0)