0

特定の日付の前に、次のコードを使用してアカウントを取得しようとしています

TimeZoneInfo pst = TimeZoneInfo.FindSystemTimeZoneById("Pacific Standard Time");
        DateTime now = TimeZoneInfo.ConvertTime(new DateTime(2012, 06, 30), pst);
        accountQuery.CreateTime = now;
        accountQuery.SpecifyOperatorOption(FilterProperty.CreateTime, 
               FilterOperatorType.BEFORE);
        accountQuery.PageNumber = 1;
        accountQuery.ResultsPerPage = 100;
        string a = Response.ToString();
        List<Intuit.Ipp.Data.Qbo.Account> accounts =
           accountQuery.ExecuteQuery<Intuit.Ipp.Data.Qbo.Account>(context)
              .ToList<Intuit.Ipp.Data.Qbo.Account>();

しかし、Unauthorized OAuth Token: signature_invalid というエラーが表示されます

4

0 に答える 0