new(all): Facebook workplace support.

This commit is contained in:
Rodrigo Rodriguez 2021-07-06 18:09:50 -03:00
parent a03faee967
commit b755a81725
2 changed files with 5 additions and 3 deletions

View file

@ -162,6 +162,7 @@ export class GBVMService extends GBService {
mobile = this.userMobile(step);
from = mobile;
ubound = function(list){return list.length};
headers = {};
${code}
`;

View file

@ -639,10 +639,11 @@ export class SystemKeywords {
* @example user = get "http://server/users/1"
*
*/
public async getByHttp(url: string, headers: any) {
public async getByHttp(url: string, headers: any, qs: any) {
const options = {
uri: url,
headers: headers
url: url,
headers: headers,
qs:qs,
};
let result = await request.get(options);