November 2009 - Posts
In the previous posts I demonstrated requesting tokens from the Access Control Service using both Simple Web Token and Shared Secret requests in Java and in PHP. In this little example I am only showing the Shared Secret request in Python. import sys,
Read More...
Following demonstrates requesting a token from the .NET Services Access Control Services using a Shared Secret and another using a Simple Web Token. You'll also need these three libraries to help in the encoding process and the HTTP calls. There are some
Read More...
Following demonstrates requesting a token from the .NET Services Access Control Services using a Shared Secret and another using a Simple Web Token. <?php $stsUrl="https://[service namespace].accesscontrol.windows.net/WRAPv0.8/"; $rpUrl="[scope applies_to]";
Read More...
When designing the Access Control Service we wanted to make it easy to request a token from the STS. We also wanted to make it possible to work with other languages, not just the .NET Framework. As such, I decided to validate the simplicity of the design
Read More...