在步骤函数中将Json字符串传递给AWS Lambda - JsonReaderException错误

时间:2018-05-14 02:20:49

标签: c# .net-core aws-lambda aws-step-functions

我试图在Step Function中使用AWS Lambda函数。 Lambda函数在单独测试并且json输入被转义时正常工作。但是当输入通过step函数传递给lambda函数时,我收到JsonReaderException错误。我究竟做错了什么?社区是否知道此问题的解决方法?

lambda函数:

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Runtime.Serialization.Formatters.Binary;
using Amazon.Lambda.Core;
using Newtonsoft.Json.Linq;

// Assembly attribute to enable the Lambda function's JSON input to be converted into a .NET class.
[assembly: LambdaSerializer(typeof(Amazon.Lambda.Serialization.Json.JsonSerializer))]
namespace AWSLambda1
{
    public class Function
    {
        public void PostsBasedOnOddOrEven(string input, ILambdaContext context)
        {
            var details = JObject.Parse(input);
            var postId = (int) details["id"];
            var oddOrEvenResult = (int) details["OddOrEvenPostsResult"];
        }
    }
}

从步骤函数输入Lambda函数:

{
  "id": "1",
  "OddOrEvenPostsResult": 2
}

输入Lambda函数(通过Visual Studio Invoke工作):

"{ \"id\": \"1\", \"OddOrEvenPostsResult\": 2}"

异常堆栈跟踪:

{
  "errorType": "JsonReaderException",
  "errorMessage": "Unexpected character encountered while parsing value: {. Path '', line 1, position 1.",
  "stackTrace": [
    "at Newtonsoft.Json.JsonTextReader.ReadStringValue(ReadType readType)",
    "at Newtonsoft.Json.JsonTextReader.ReadAsString()",
    "at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.ReadForType(JsonReader reader, JsonContract contract, Boolean hasConverter)",
    "at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent)",
    "at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objectType)",
    "at Newtonsoft.Json.JsonSerializer.Deserialize[T](JsonReader reader)",
    "at Amazon.Lambda.Serialization.Json.JsonSerializer.Deserialize[T](Stream requestStream)",
    "at lambda_method(Closure , Stream , Stream , LambdaContextInternal )"
  ]
}

Lambda函数在步骤函数

的一部分时不起作用

Lambda Function not working when it is part of Step Function

Lambda函数在单独测试时正常工作

Lambda Function working when tested individually

1 个答案:

答案 0 :(得分:3)

由于lambda函数期望inputstring,因此框架会尝试解析输入,就像它是string一样。

但是,输入实际上是一个JSON对象,而不是字符串。

因此,解析器将因“意外字符”错误而失败。解析器期望一个"字符,表示字符串的开头。

所以,以下是解决问题的方法:

  1. 声明表示输入的c#类

    public class FunctionInput
    {
        public int id { get; set; }
        public int OddOrEvenPostsResult { get; set; }
    }
    
  2. 将您的功能签名更改为input

    类型的FunctionInput
    public class Function
    {    
        public void PostsBasedOnOddOrEven(FunctionInput input, ILambdaContext context)
        {
            var postId = input.id;
            var oddOrEvenResult = input.OddOrEvenPostsResult;
        }
    }
    
  3. 注意:您不需要自己解析输入。