useWixAuth()

The useWixAuth() hook returns the authentication strategy of the enclosing WixProvider, such as OAuthStrategy or APIKeyStrategy.

Note: This hook must be used inside an enclosing WixProvider component.

Example

Copy
1
import { useWixAuth } from '@wix/sdk-react';
2
3
//...
4
5
const { generateVisitorTokens } = useWixAuth() as IOAuthStrategy;
6
7
//...
8
9
const { accessToken, refreshToken } = await generateVisitorTokens();
Was this helpful?
Yes
No