Decrypting the value of the OAuth token received from third party OAuth provider.InstructionsYou can use the below script to decrypt the value in the 'token_received' column : var gr =new GlideRecord('oauth_credential');gr.addQuery('sys_id','<sys_id_of_oauth_credential');gr.query();if (gr.next()){var token= gr.getValue('token_received');var encrypter = new GlideEncrypter();gs.log("token:" + encrypter.decrypt(token));}