This repository was archived by the owner on Oct 19, 2022. It is now read-only.

Description
Hi, can anybody confirm this is working
https://docs.stormpath.com/dotnet/aspnetcore/latest/me_api.html#me-expansion
Here is my yaml file
`---
application:
name: "My Storm"
web:
me:
enabled: true
uri: "/userDetails"
expand:
customData: true
`
but I only get default stuff. Uri change is working but I cannot get custom data.
When I try using REST API I get customData (and everything else).
I have entered some custom data for the user but I don't know how to get it in ASP.NET Core.
Here is the response
{
"account": {
"href": "https://api.stormpath.com/v1/accounts/blahblah",
"username": "[email protected]",
"modifiedAt": "2016-07-22T16:38:33.609+00:00",
"status": "ENABLED",
"createdAt": "2016-07-22T13:01:37.313+00:00",
"email": "[email protected]",
"middleName": null,
"surname": "Flannelfoot",
"givenName": "Zlorf",
"fullName": "Zlorf Flannelfoot"
}
}
Shouldn't there be a custom data as well? Like I said, It exists when I get user details with that href link.
I'm using Windows 10 + VS 2015 community edition and I downloaded stormpath example from
https://github.com/stormpath/stormpath-aspnetcore-example/tree/master/src/StormpathExample