Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
OK, so there is no way that the formula can work if your app is requiring Application Tokens. You need to either turn off the need for Application Tokens or else provide on in the formula by adding in a line like,
var text URL = URLRoot() & "db/" & Dbid() & "?act=API_EditRecord&rid=" & [Record ID#]
& "&apptoken=xcxcxcxcxcxcxcxcxcxcxcx"
& "&_fid_30=" & URLEncode([Last Modified By]);
"javascript:" &
"$.get('" &
$URL &
"',function(){" &
"location.reload(true);" &
"});"
& "void(0);"
var text URL = URLRoot() & "db/" & Dbid() & "?act=API_EditRecord&rid=" & [Record ID#]
& "&apptoken=xcxcxcxcxcxcxcxcxcxcxcx"
& "&_fid_30=" & URLEncode([Last Modified By]);
"javascript:" &
"$.get('" &
$URL &
"',function(){" &
"location.reload(true);" &
"});"
& "void(0);"