Changelog Subpage

Product updates will be updated here

Third-party authentication

Third-party authentication
  1. New Instead of passing an empty object to the functions OAutinpuparameter to define what token type should be used, you’ll need to use a new property to specify which user’s token should be selected or requested during workflow execution. For example: blog bdigital HQ


Column 1

Column 2

Column 3

Column 4

Black

Yelow

green

white

Red

Ronaldo

David

Beckham






// OLD
const sampleFunctionStep = SampleWorkflow.addStep(SampleFunctionDefinition, {
user: SampleWorkflow.inputs.user,
googleAccessTokenId: {},
});


// NEW
const sampleFunctionStep = SampleWorkflow.addStep(SampleFunctionDefinition, {
user: SampleWorkflow.inputs.user,
googleAccessTokenId: {
credential_source: "DEVELOPER" // Add this by April 6th, 2023
},
});

Our code block

// OLD
const sampleFunctionStep = SampleWorkflow.addStep(SampleFunctionDefinition, {
user: SampleWorkflow.inputs.user,
googleAccessTokenId: {},
});


// NEW
const sampleFunctionStep = SampleWorkflow.addStep(SampleFunctionDefinition, {
user: SampleWorkflow.inputs.user,
googleAccessTokenId: {
credential_source: "DEVELOPER" // Add this by April 6th, 2023
},
});

Helpcenter code

public class QuotientRemainder {

public static void main(String[] args) {

int dividend = 25, divisor = 4;

int quotient = dividend / divisor;
int remainder = dividend % divisor;

System.out.println("Quotient = " + quotient);
System.out.println("Remainder = " + remainder);
}
}