Я делал это несколько раз в classi c web apis, но не в Azure Функции, поэтому я не уверен, что мне здесь не хватает:
Моя сущность Пользователь:
[SharedCosmosCollection("shared")]
public class User : ISharedCosmosEntity
{
/// <summary>
/// User id
/// </summary>
[JsonProperty("Id")]
public string Id { get; set; }
/// <summary>
/// Cosmos entity name for shared collection
/// </summary>
[CosmosPartitionKey]
public string CosmosEntityName { get; set; }
public string GivenName { get; set; }
public string FamilyName { get; set; }
public string NickName { get; set; }
public string Name { get; set; }
public string Picture { get; set; }
public string Locale { get; set; }
public DateTime UodatedAt { get; set; }
public string Email { get; set; }
public bool EmailVerified { get; set; }
public string Sub { get; set; }
}
Код моей функции для CreateUser:
[FunctionName("CreateUser")]
public static async Task<IActionResult> CreateUser(
[HttpTrigger(AuthorizationLevel.Function,
"post", Route = "user")]
HttpRequest req)
{
var telemetry = new TelemetryClient();
try
{
string requestBody = await new StreamReader(req.Body).ReadToEndAsync();
var input = JsonConvert.DeserializeObject<User>(requestBody);
var userStore = CosmosStoreHolder.Instance.CosmosStoreUsers;
var added = await userStore.AddAsync(input);
return new OkObjectResult(added);
}
catch (Exception ex)
{
string guid = Guid.NewGuid().ToString();
var dt = new Dictionary<string, string>
{
{ "Error Lulo: ", guid }
};
telemetry.TrackException(ex, dt);
return new BadRequestResult();
}
}
и на портале я отправляю это JSON в теле запроса
{
"given_name": "aaa",
"family_name": "bbb",
"nickname": "xx.xx.psg",
"name": "bbbb",
"picture": "https://lh3.googleusercontent.com/a-/AOhsGg8qaBLDPubSaNb3u8zMyiUGrwFE3zhQ8MMqLALjGc",
"locale": "es",
"updated_at": "2020-04-20T15:33:16.133Z",
"email": "xx.xx.psg@gmail.com",
"email_verified": true,
"sub": "google-oauth2|1111"
}
Однако я получаю ошибка http 500 и не уверен, в чем проблема