我将 Podio 用于日常任务,并且正在使用podio-js
获取数据。我想检查字段中的值是否更改。是否有API方法或无论如何都要检查特定字段的值是否被更改?
答案 0 :(得分:0)
您可以为应用添加字段级挂钩。 参考:https://developers.podio.com/doc/hooks
您不能添加字段挂钩,因为我们通常会通过UI添加挂钩。您需要使用podio API添加字段级挂钩。
您可以使用create hook API。 参考:https://developers.podio.com/doc/hooks/create-hook-215056
在此情况下,您需要将static void Main(string[] args)
{
//string one produces the desired results
string one = "\xfc\xe8\x82\x00\x00";
//args[0] is the same thing as string one..just command line
//it IS never the same as strong one once "loaded"
byte[] bytes = Encoding.GetEncoding(1252).GetBytes(args[0]);
//various messing around trying to figure it out....
string two = Encoding.UTF8.GetString(bytes);
byte[] oneb = StrToByteArray(one);
byte[] twob = StrToByteArray(two);
Console.ReadKey();
}
public static byte[] StrToByteArray(string str)
{
if (str != string.Empty)
{
byte[] sc = new byte[str.Length];
for (int i = 0; i < str.Length; i++)
{
sc[i] = Convert.ToByte(str[i]);
}
return sc;
}
return null;
}
作为type
传递,并且
"app_field"
为ref_id
仅当指定字段更新时,此钩子才会触发。