zohor_login: Define API credentials for your Zoho creator app

Description Usage Arguments Value Examples

View source: R/zohor_login.R

Description

#'zohor_login() saves these credentials in the global environment so they can be used to communicate with the server This function must be run before any other function of this package zohor.

Usage

1
2
3
4
5
6
7
8
9
zohor_login(
  zohor_server,
  zohor_user,
  zohor_ownername,
  zohor_scope,
  zohor_token,
  zohor_password,
  ...
)

Arguments

zohor_server

A string. URL of your App.

zohor_user

A string. email address of your user in Zoho creator.

zohor_ownername

A string. Owner of the app

zohor_password

A string. Password of the API user.

zoho_scope

A string. Scope of the query. Default = "creatorapi"

zoho_token

A string. Token of the API

Value

All the parameters provided to the function (zohor_server, zohor_user, zohor_password), etc. will be saved in your global environment so can be used in your workflow. A

Examples

1
2
3
4
5
6
7
zohor_login(zohor_server = "https://creator.zoho.com/api/json/myapp/view/",
              zoho_user = "ronaldo",
               zohor_ownername = "ronaldogmail.com,
               zoho_scope = "creatorapi,
               zoho_token = XXXXXXXXX,
               zohor_password = golazosolitario,
             )

araupontones/zohor documentation built on Dec. 19, 2021, 4:35 a.m.