Skip to content

Commit

Permalink
Implementação da versão 1.2 da API Rest do SafeGuard, separaçõa da va…
Browse files Browse the repository at this point in the history
…lidação do OTP em um método especifico
  • Loading branch information
antonioams committed Jan 15, 2014
1 parent 1908a4a commit aa7dea2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: AssemblyVersion("1.2.0.0")]
[assembly: AssemblyFileVersion("1.2.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public Boolean ValidateTransactionToken(string token, string context, string use
{
try
{
string json = "{\"token\": \"" + token + "\", \"otp\": \"" + otp + "\", \"context\": \"" + context + "\", \"user\": \"" + user + "\"}";
string json = "{\"token\": \"" + token + "\", \"context\": \"" + context + "\", \"user\": \"" + user + "\"}";
return executePost("/v1.2/validate_transaction_token.json", json);
}
catch (Exception e)
Expand Down

0 comments on commit aa7dea2

Please sign in to comment.