import { axios } from "@pipedream/platform";
import crypto from "crypto";
export default defineComponent({
props: {
livespace: {
type: "app",
app: "livespace",
}
},
async run({steps, $}) {
const concatenatedString = this.livespace.$auth.api_key
+ this.livespace.$auth.token
+ this.livespace.$auth.api_secret;
const sha1Hash = crypto.createHash('sha1')
.update(concatenatedString)
.digest('hex');
const data = {
"_api_auth": `key`,
"_api_key": `${this.livespace.$auth.api_key}`,
"_api_sha": `${sha1Hash}`,
"_api_session": `${this.livespace.$auth.session_id}`,
}
return await axios($, {
method: "post",
url: `https://${this.livespace.$auth.subdomain}.livespace.io/api/public/json/Default/User_getInfo`,
data,
})
},
})
Livespace uses OAuth authentication. When you connect your Livespace account, Pipedream will open a popup window where you can sign into Livespace and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Livespace API.
Pipedream requests the following authorization scopes when you connect your account:
GET
https://{{custom_fields.subdomain}}.livespace.io/api/public/json/_Api/auth_call/_api_method/getToken
?
_api_key={{custom_fields.api_key}}
&
_api_auth=key
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
GET
https://{{custom_fields.subdomain}}.livespace.io/api/public/json/_Api/auth_call/_api_method/getToken
?
_api_key={{custom_fields.api_key}}
&
_api_auth=key
accept: application/json