Topics   All   MacOS (Only)   Windows (Only)   Linux (Only, Not)   iOS (Only, Not)  
Components   Crossplatform Mac & Win   Server   Client   Old   Deprecated   Guides   Examples   Videos
New in version: 12.1   12.2   12.3   12.4   12.5   13.0   13.1   13.2   13.3   13.4    Statistic    FMM    Blog  

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

💬 Ask a question or report a problem