SmythOS SDK
    Preparing search index...

    Interface TAPICallSettings

    interface TAPICallSettings {
        accessTokenURL?: string;
        authenticate?: string;
        authorizationURL?: string;
        body?: any;
        callbackURL?: string;
        clientID?: string;
        clientSecret?: string;
        consumerKey?: string;
        consumerSecret?: string;
        contentType?:
            | "none"
            | "application/json"
            | "multipart/form-data"
            | "binary"
            | "application/x-www-form-urlencoded"
            | "text/plain"
            | "application/xml";
        headers?: any;
        method: "GET"
        | "POST"
        | "PUT"
        | "PATCH"
        | "DELETE"
        | "HEAD"
        | "OPTIONS";
        name?: string;
        oauth1CallbackURL?: string;
        oauth2CallbackURL?: string;
        oauthService?: string;
        proxy?: string;
        scope?: string;
        tokenURL?: string;
        url: string;
        userAuthorizationURL?: string;
    }
    Index

    Properties

    accessTokenURL?: string

    Access Token URL

    authenticate?: string

    Authenticate

    authorizationURL?: string

    Authorization URL

    body?: any

    Body

    callbackURL?: string

    Callback URL

    clientID?: string

    Client ID

    clientSecret?: string

    Client Secret

    consumerKey?: string

    Consumer Key

    consumerSecret?: string

    Consumer Secret

    contentType?:
        | "none"
        | "application/json"
        | "multipart/form-data"
        | "binary"
        | "application/x-www-form-urlencoded"
        | "text/plain"
        | "application/xml"

    Content-Type

    headers?: any

    Headers

    method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | "HEAD" | "OPTIONS"

    Method

    name?: string
    oauth1CallbackURL?: string

    OAuth1 Callback URL

    oauth2CallbackURL?: string

    OAuth2 Callback URL

    oauthService?: string

    OAuth Service

    proxy?: string

    Proxy

    scope?: string

    Scope

    tokenURL?: string

    Token URL

    url: string

    URL

    userAuthorizationURL?: string

    User Authorization URL