Navigation

    MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    MagicMirror² v2.15.0 is available! For more information about this release, check out this topic.

    New to building modules. plz help

    Development
    2
    18
    162
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • S
      sdetweil @Djninja926 last edited by

      @Djninja926 figure out the data differences from the 1st api used to the new one, and how you have to fix the output format

      D 1 Reply Last reply Reply Quote 0
      • D
        Djninja926 @sdetweil last edited by

        @sdetweil I dont get what you mean

        S 1 Reply Last reply Reply Quote 0
        • S
          sdetweil @Djninja926 last edited by sdetweil

          @Djninja926 the code u changed had some expected data format back from the service it called.
          it used that data format in the code to make the visual part of the output

          the new api (that url ) provides data in a different format.

          as an example of the type of thing I am talking about,

          1 has a spreadsheet with 4 columns, and 1 has a spreadsheet with 8 columns and none of the column names are the same.
          the code expected to find 4 columns with specific names. they aren’t there

          how do you reconcile that?

          =====> but these apis return json data not excel spreadsheets, it is just an example of the work you need to do

          D 1 Reply Last reply Reply Quote 0
          • D
            Djninja926 @sdetweil last edited by

            @sdetweil how do I make it JSON format

            S 1 Reply Last reply Reply Quote 0
            • D
              Djninja926 last edited by Djninja926

              @sdetweil or how do I make the module take whatever format the urlApi is

              1 Reply Last reply Reply Quote 0
              • S
                sdetweil @Djninja926 last edited by sdetweil

                @Djninja926 >how do I make it JSON format

                the data is already in json format (old and new) JSON is just a structure, like a spreadsheet, it doesn’t control the actual content

                how do I make the module take whatever format the urlApi is

                good luck with that… i don’t know of any software learning that would be capable of that
                old data

                {
                  "userId": 1,
                  "id": 1,
                  "title": "sunt aut facere repellat provident occaecati excepturi optio reprehenderit",
                  "body": "quia et suscipit\nsuscipit recusandae consequuntur expedita et cum\nreprehenderit molestiae ut ut quas totam\nnostrum rerum est autem sunt rem eveniet architecto"
                }
                

                new data

                {"wus": 18, "rank": 0, "total_users": 2656615, "active_50": 1, "path": "donor/Apia_Okorafor", "wus_cert": "https://apps.foldingathome.org/awards?user=72700656&type=wus", "id": 72700656, "credit_cert": "https://apps.foldingathome.org/awards?user=72700656&type=score", "last": "2020-04-28 02:35:06", "name": "Apia_Okorafor", "teams": [{"wus": 18, "last": "2020-04-28 02:35:06", "uid": 72700656, "active_50": 1, "active_7": 1, "credit": 31157, "team": 223518, "name": "LinusTechTips_Team"}], "active_7": 1, "credit": 31157}
                

                the code only used the title field from the data, but there is no title field at all in the new data

                if (this.dataRequest) {
                			var wrapperDataRequest = document.createElement("div");
                			// check format https://jsonplaceholder.typicode.com/posts/1
                			wrapperDataRequest.innerHTML = this.dataRequest.title;
                
                			var labelDataRequest = document.createElement("label");
                			// Use translate function
                			//             this id defined in translations files
                			labelDataRequest.innerHTML = this.translate("TITLE");
                
                
                			wrapper.appendChild(labelDataRequest);
                			wrapper.appendChild(wrapperDataRequest);
                		}
                
                D 1 Reply Last reply Reply Quote 0
                • D
                  Djninja926 @sdetweil last edited by

                  @sdetweil I got it working. thank you for your help

                  S 1 Reply Last reply Reply Quote 1
                  • S
                    sdetweil @Djninja926 last edited by

                    @Djninja926 cool…

                    1 Reply Last reply Reply Quote 0
                    • 1
                    • 2
                    • 2 / 2
                    • First post
                      Last post
                    Enjoying MagicMirror? Please consider a donation!
                    MagicMirror created by Michael Teeuw.
                    Forum managed by Paul-Vincent Roll and Rodrigo Ramírez Norambuena.
                    This forum is using NodeBB as its core | Contributors
                    Contact | Privacy Policy