| Home | All functions | Legacy functions | Categories |
vuOAuthSetProvider(*CSTRING InProvider),LONG,PROC,PASCAL,RAW,NAME('vuOAuthSetProvider')
Stores the default OAuth provider identifier used by OAuth helper operations.
| Parameter | Type | Description |
|—|—|—|
| InProvider | *CSTRING | Provider name to store (for example Microsoft or Google). |
1: Success.-3: Bad request (provider string was blank).MAP
MODULE('vuMail.dll')
vuOAuthSetProvider(*CSTRING InProvider),LONG,PROC,PASCAL,RAW,NAME('vuOAuthSetProvider')
END
END
rc LONG
provider CSTRING(64)
provider = 'Microsoft'
rc = vuOAuthSetProvider(provider)
IF rc <> 1
MESSAGE('vuOAuthSetProvider failed: ' & rc)
END
| Home | All functions | Legacy functions | Categories |