I am looking for an example that can help me with the following flow:
1) Sign in form in an angularJS client
2) Actual sign in in a .net server (not MVC) where we there is context to the user that signed in in order to call another API ->
3) Call the Blockchain Workbench API with the bearer token that is received from step 2.
I have tried a couple of flows but I never get a valid bearer token that enables me to call the workbench API
For example I have used this: http://blog.pomiager.com/post/using-rest-api-in-azure-workbench-blockchain which signs me in but its MVC and I will like to separate it to a client in angular and a C# server.
This one https://github.com/azure-samples/active-directory-dotnet-webapi-onbehalfof may get closer but its still uses MVP.
Thanks