Thingsboard - Authentication error on REST API (FROM Curl command and ASP.NET)











up vote
0
down vote

favorite












I'm able to login to Thingsboard website using my credentials, however when I try to connect the same using CURL command I get "Authentication Failed" error.



curl -X POST "https://cloud.thingsboard.io/api/auth/login" -d "{"username":"XYZPQR@ABCDLMN.com", "password":"Q@34&pwn"}" --header "Content-Type: application/json" --header "Accept: application/json"


Error Code



{"status":401,"message":"Authentication failed","errorCode":10,"timestamp":1542893993515}


However when I use the same user id and Password in my ASP.NET Application to fetch the authorization token, I do get the JWT token, but using the same token I'm unable to make any REST API call from Thingsboard.



ASP.NET CORE CODE



var response = new HttpResponseMessage();
var client = new HttpClient();
UserModel model = new UserModel { username = "XYZPQR@ABCDLMN.com", password = "Q@34&pwn" };
var content = new StringContent(JsonConvert.SerializeObject(model), Encoding.UTF8, "application/json");

response = await client.PostAsync("https://cloud.thingsboard.io/api/auth/login", content);

string data = await response.Content.ReadAsStringAsync();

var userToken = JsonConvert.DeserializeObject<UserToken>(data);

MediaTypeWithQualityHeaderValue contentType = new MediaTypeWithQualityHeaderValue("application/json");

client.DefaultRequestHeaders.Accept.Add(contentType);

client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", userToken.token);
Uri url = new Uri("https://cloud.thingsboard.io/api/plugins/telemetry/DEVICE/431be6e0-e8ca-11e8-9e5c-3d544ba4fdfc/values/timeseries?keys=Electricity");

response = await client.GetAsync(url);


Model Class



 public class UserModel {
public string username { get; set; }
public string password { get; set; }
}

public class UserToken
{
public string token { get; set; }
public string refreshToken { get; set; }
}


Please suggest, how to get the telemetry values from Thingsboard REST API.










share|improve this question




























    up vote
    0
    down vote

    favorite












    I'm able to login to Thingsboard website using my credentials, however when I try to connect the same using CURL command I get "Authentication Failed" error.



    curl -X POST "https://cloud.thingsboard.io/api/auth/login" -d "{"username":"XYZPQR@ABCDLMN.com", "password":"Q@34&pwn"}" --header "Content-Type: application/json" --header "Accept: application/json"


    Error Code



    {"status":401,"message":"Authentication failed","errorCode":10,"timestamp":1542893993515}


    However when I use the same user id and Password in my ASP.NET Application to fetch the authorization token, I do get the JWT token, but using the same token I'm unable to make any REST API call from Thingsboard.



    ASP.NET CORE CODE



    var response = new HttpResponseMessage();
    var client = new HttpClient();
    UserModel model = new UserModel { username = "XYZPQR@ABCDLMN.com", password = "Q@34&pwn" };
    var content = new StringContent(JsonConvert.SerializeObject(model), Encoding.UTF8, "application/json");

    response = await client.PostAsync("https://cloud.thingsboard.io/api/auth/login", content);

    string data = await response.Content.ReadAsStringAsync();

    var userToken = JsonConvert.DeserializeObject<UserToken>(data);

    MediaTypeWithQualityHeaderValue contentType = new MediaTypeWithQualityHeaderValue("application/json");

    client.DefaultRequestHeaders.Accept.Add(contentType);

    client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", userToken.token);
    Uri url = new Uri("https://cloud.thingsboard.io/api/plugins/telemetry/DEVICE/431be6e0-e8ca-11e8-9e5c-3d544ba4fdfc/values/timeseries?keys=Electricity");

    response = await client.GetAsync(url);


    Model Class



     public class UserModel {
    public string username { get; set; }
    public string password { get; set; }
    }

    public class UserToken
    {
    public string token { get; set; }
    public string refreshToken { get; set; }
    }


    Please suggest, how to get the telemetry values from Thingsboard REST API.










    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I'm able to login to Thingsboard website using my credentials, however when I try to connect the same using CURL command I get "Authentication Failed" error.



      curl -X POST "https://cloud.thingsboard.io/api/auth/login" -d "{"username":"XYZPQR@ABCDLMN.com", "password":"Q@34&pwn"}" --header "Content-Type: application/json" --header "Accept: application/json"


      Error Code



      {"status":401,"message":"Authentication failed","errorCode":10,"timestamp":1542893993515}


      However when I use the same user id and Password in my ASP.NET Application to fetch the authorization token, I do get the JWT token, but using the same token I'm unable to make any REST API call from Thingsboard.



      ASP.NET CORE CODE



      var response = new HttpResponseMessage();
      var client = new HttpClient();
      UserModel model = new UserModel { username = "XYZPQR@ABCDLMN.com", password = "Q@34&pwn" };
      var content = new StringContent(JsonConvert.SerializeObject(model), Encoding.UTF8, "application/json");

      response = await client.PostAsync("https://cloud.thingsboard.io/api/auth/login", content);

      string data = await response.Content.ReadAsStringAsync();

      var userToken = JsonConvert.DeserializeObject<UserToken>(data);

      MediaTypeWithQualityHeaderValue contentType = new MediaTypeWithQualityHeaderValue("application/json");

      client.DefaultRequestHeaders.Accept.Add(contentType);

      client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", userToken.token);
      Uri url = new Uri("https://cloud.thingsboard.io/api/plugins/telemetry/DEVICE/431be6e0-e8ca-11e8-9e5c-3d544ba4fdfc/values/timeseries?keys=Electricity");

      response = await client.GetAsync(url);


      Model Class



       public class UserModel {
      public string username { get; set; }
      public string password { get; set; }
      }

      public class UserToken
      {
      public string token { get; set; }
      public string refreshToken { get; set; }
      }


      Please suggest, how to get the telemetry values from Thingsboard REST API.










      share|improve this question















      I'm able to login to Thingsboard website using my credentials, however when I try to connect the same using CURL command I get "Authentication Failed" error.



      curl -X POST "https://cloud.thingsboard.io/api/auth/login" -d "{"username":"XYZPQR@ABCDLMN.com", "password":"Q@34&pwn"}" --header "Content-Type: application/json" --header "Accept: application/json"


      Error Code



      {"status":401,"message":"Authentication failed","errorCode":10,"timestamp":1542893993515}


      However when I use the same user id and Password in my ASP.NET Application to fetch the authorization token, I do get the JWT token, but using the same token I'm unable to make any REST API call from Thingsboard.



      ASP.NET CORE CODE



      var response = new HttpResponseMessage();
      var client = new HttpClient();
      UserModel model = new UserModel { username = "XYZPQR@ABCDLMN.com", password = "Q@34&pwn" };
      var content = new StringContent(JsonConvert.SerializeObject(model), Encoding.UTF8, "application/json");

      response = await client.PostAsync("https://cloud.thingsboard.io/api/auth/login", content);

      string data = await response.Content.ReadAsStringAsync();

      var userToken = JsonConvert.DeserializeObject<UserToken>(data);

      MediaTypeWithQualityHeaderValue contentType = new MediaTypeWithQualityHeaderValue("application/json");

      client.DefaultRequestHeaders.Accept.Add(contentType);

      client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", userToken.token);
      Uri url = new Uri("https://cloud.thingsboard.io/api/plugins/telemetry/DEVICE/431be6e0-e8ca-11e8-9e5c-3d544ba4fdfc/values/timeseries?keys=Electricity");

      response = await client.GetAsync(url);


      Model Class



       public class UserModel {
      public string username { get; set; }
      public string password { get; set; }
      }

      public class UserToken
      {
      public string token { get; set; }
      public string refreshToken { get; set; }
      }


      Please suggest, how to get the telemetry values from Thingsboard REST API.







      thingsboard






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 23 at 4:41

























      asked Nov 22 at 13:51









      Arayn

      173114




      173114
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote



          accepted










          It was a small mistake I was doing; I changed old code to new code(as shown below), and everything started working as expected.



          Old code



          client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", userToken.token);


          New Code



          client.DefaultRequestHeaders.Add("X-Authorization", "Bearer " + userToken.token);


          Thanks for support.






          share|improve this answer





















            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53432471%2fthingsboard-authentication-error-on-rest-api-from-curl-command-and-asp-net%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            0
            down vote



            accepted










            It was a small mistake I was doing; I changed old code to new code(as shown below), and everything started working as expected.



            Old code



            client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", userToken.token);


            New Code



            client.DefaultRequestHeaders.Add("X-Authorization", "Bearer " + userToken.token);


            Thanks for support.






            share|improve this answer

























              up vote
              0
              down vote



              accepted










              It was a small mistake I was doing; I changed old code to new code(as shown below), and everything started working as expected.



              Old code



              client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", userToken.token);


              New Code



              client.DefaultRequestHeaders.Add("X-Authorization", "Bearer " + userToken.token);


              Thanks for support.






              share|improve this answer























                up vote
                0
                down vote



                accepted







                up vote
                0
                down vote



                accepted






                It was a small mistake I was doing; I changed old code to new code(as shown below), and everything started working as expected.



                Old code



                client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", userToken.token);


                New Code



                client.DefaultRequestHeaders.Add("X-Authorization", "Bearer " + userToken.token);


                Thanks for support.






                share|improve this answer












                It was a small mistake I was doing; I changed old code to new code(as shown below), and everything started working as expected.



                Old code



                client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", userToken.token);


                New Code



                client.DefaultRequestHeaders.Add("X-Authorization", "Bearer " + userToken.token);


                Thanks for support.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 23 at 7:22









                Arayn

                173114




                173114






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53432471%2fthingsboard-authentication-error-on-rest-api-from-curl-command-and-asp-net%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    What visual should I use to simply compare current year value vs last year in Power BI desktop

                    Alexandru Averescu

                    Trompette piccolo