Browse Community
Help
Log In
Responses(3)
Solutions(1)
quanghoc
1 Rookie
•
40 Posts
0
June 11th, 2015 09:00
For all sub-sequence API calls, you just need to pass the token without username in base64 encode to the request header. So something like this:
string authToken = @":token"; authToken = Convert.ToBase64String(Encoding.Default.GetBytes(authToken));
string authToken = @":token";
authToken = Convert.ToBase64String(Encoding.Default.GetBytes(authToken));
(I'm not C# expert)
chi_sox
19 Posts
June 11th, 2015 05:00
Did you insure the following:
Gateway service is running
The password was set in the gatewayUser.properties file
yamachan1
4 Posts
June 14th, 2015 21:00
I did as you described,it works.
Thank you!!
Dell Support Resources
View All
Top
quanghoc
1 Rookie
•
40 Posts
0
June 11th, 2015 09:00
For all sub-sequence API calls, you just need to pass the token without username in base64 encode to the request header. So something like this:
(I'm not C# expert)
chi_sox
19 Posts
0
June 11th, 2015 05:00
Did you insure the following:
Gateway service is running
The password was set in the gatewayUser.properties file
yamachan1
1 Rookie
•
4 Posts
0
June 14th, 2015 21:00
I did as you described,it works.
Thank you!!