Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

Social.HasAccessForAccountType

Checks if we do have permissions for this type of service.

Component Version macOS Windows Linux Server iOS SDK
Social 5.3 ✅ Yes ❌ No ❌ No ❌ No ✅ Yes

Deprecated

This function was deprecated.

MBS( "Social.HasAccessForAccountType"; Type )   More

Parameters

Parameter Description Example
Type The type of accounts to checks.Can be Twitter, Facebook, SinaWeibo, TencentWeibo or LinkedIn. "Twitter"

Result

Returns 0, 1 or error.

Description

Checks if we do have permissions for this type of service.
Returns 1 if you have permissions. If it returns 0, please use Social.RequestAccessForAccountType function.

Examples

Check permissions:

Set Variable [$r; Value:MBS( "Social.HasAccessForAccountType"; "Twitter" )]
If [$r = 1]
    Show Custom Dialog ["Permissions"; "We do have permissions for Twitter."]
Else If [$r = 0]
    Show Custom Dialog ["Permissions"; "We don't have permissions for Twitter."]
Else
    Show Custom Dialog ["Permissions"; "Failed to check: " & $r]
End If

See also

Example Databases

This function is free to use.

Created 28th August 2015, last changed 12nd June 2020


Social.Accounts - Social.RequestAccessForAccountType