MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    MMM-SunnyPortal Solar Module

    Scheduled Pinned Locked Moved Requests
    23 Posts 7 Posters 10.1k Views 7 Watching
    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.
    • L Offline
      linuxtuxie @icemanmw
      last edited by linuxtuxie

      Hi icemanmw,

      It seems that your installation is redirecting you to the following page: /FixedPages/HoManEnergyRedesign.aspx instead of the ones we already know of (DASHBOARD_URL & USERPROFILE_URL )

      In to code we are checking if the returned HTTP redirect matches the DASHBOARD_URL or USERPROFILE_URL

      You could try to use the below code in the node_helper.js script to add this page

      • Add the HOMAN_URL variable at line 21
        var HOMAN_URL = ‘/FixedPages/HoManEnergyRedesign.aspx’;

      • Change the code starting from line 99
        // Hack to check for login. Should forward to dashboard.
        if(httpResponse.headers.location && httpResponse.headers.location === DASHBOARD_URL) {
        console.log(“SUCCESSFULLY LOGGED IN TO DASHBOARD”);
        callback(err, jar);
        } else if(httpResponse.headers.location && httpResponse.headers.location === USERPROFILE_URL) {
        console.log(“SUCCESSFULLY LOGGED IN TO USERPROFILE”);
        callback(err, jar);
        } else if(httpResponse.headers.location && httpResponse.headers.location === HOMAN_URL) {
        console.log(“SUCCESSFULLY LOGGED IN TO HOMAN”);
        callback(err, jar);
        } else {
        console.log("Login Failed, no redirect to Dashboard, UserProfile or homan "+ httpResponse.headers.location);
        callback(new Error(‘Login Failed, no redirect to Dashboard, UserProfile or homan’));
        }

      Can you let us know the results?

      Regards,
      Linuxtuxie

      1 Reply Last reply Reply Quote 0
      • I Offline
        icemanmw
        last edited by icemanmw

        Hi linuxtuxie,
        sorry fore my late response . I was a few days in Austria.
        Nevertheless i tried today your proposal and it looks much better. Now i see that :

        sunnyportal 2020-07-17 165439.jpg

        1 Reply Last reply Reply Quote 0
        • S Offline
          Snake-Darkangel
          last edited by Snake-Darkangel

          I’ve the same issue. I try the update in the code, adding the httpResponse.headers.location in the log => it’s “undefined”
          (and http result : 200.)

          With the new version of the module, I’ve this log:

          [2020-11-23 12:26:02.231] [LOG]    Login Failed, no redirect to any of the known url's /FixedPages/Dashboard.aspx, /Templates/UserProfile.aspx, /FixedPages/HoManEnergyRedesign.aspx
          [2020-11-23 12:26:02.233] [LOG]    You are being redirected to the yet unkown url: undefined
          

          In my browser I see on the homepage a pop-up for a new SMA application. Maybe that can generate another URL ? I tried to cancel it to see if it’s the problem but … nope :(

          Still looking for a solution.

          1 Reply Last reply Reply Quote 0
          • L Offline
            linuxtuxie
            last edited by

            Hi Snake-Darkangel,

            Did you use the latest code listed at https://github.com/linuxtuxie/MMM-SunnyPortal ?

            More specifically the piece of code listed in the file node_helper.js is important. SunnyPortal seems to be very picky when it comes to the browser which makes a connection to there website. I recently updated the user-agent to the latest Firefox version as shown below:

            headers : {
            // We need to simulate a Browser which the SunnyPortal accepts…here I am Using Firefox 82.0.3 (64-bit) for Windows
            ‘User-Agent’: ‘Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:82.0) Gecko/20100101 Firefox/82.0’,
            },

            User SkyFocusNL even used another user-agent to get things working
            https://forum.magicmirror.builders/topic/14019/mmm-sunnyportal-not-loading/3
            maybe you can give that solution a try and provide us some feedback ?

            Regards,
            Linuxtuxie

            S 1 Reply Last reply Reply Quote 0
            • S Offline
              Snake-Darkangel @linuxtuxie
              last edited by

              Hello @linuxtuxie ,

              Thank for your help. With the last update it’s working again.
              I probably miss an update -_-" (or forget to read other topic ^^)

              Regards,

              1 Reply Last reply Reply Quote 0
              • D Offline
                DarthVaper
                last edited by

                Hello,

                any news about this loading problem ?

                Regards.

                1 Reply Last reply Reply Quote 0
                • 1
                • 2
                • 3
                • 1 / 3
                • First post
                  Last post
                Enjoying MagicMirror? Please consider a donation!
                MagicMirror created by Michael Teeuw.
                Forum managed by Sam, technical setup by Karsten.
                This forum is using NodeBB as its core | Contributors
                Contact | Privacy Policy