Golang Gorilla Session not working in Chrome Browser But works on Safari and Firefox












0














I am having trouble deploying my golang web app into a live server.



While running this code locally, it was working perfectly fine.



Note that I did the following checks to try to solve this problem:




  1. I made sure that my systemd had the environment variable SESSION_KEY.
    ( Printed out the os.Getenv("SESSION_KEY") and it returned the key.


  2. I tried to check all the returned errors from the below functions.
    ( All of the errors are nil; however when I try to get_session after the fact, it returns false for the ok variable and 0 for the uid)


  3. I tried working this code on firefox, safari, and chrome. ( Chrome is the only one that does not work. )



I only pulled out the code that had to do with "github.com/gorilla/sessions" package.






var store = sessions.NewCookieStore(byte(os.Getenv("SESSION_KEY")))


func init() {

fmt.Println(store)
fmt.Println("SESSION KEY BELOW: ", os.Getenv("SESSION_KEY"))

store.Options = &sessions.Options{
Domain: "buckler.solutions",
Path: "/",
MaxAge: 3600 * 8, // 8 hours
HttpOnly: true,
}
}

func get_session(request *http.Request) (int, error) {
// META: Gets the session cookie and returns the result.

session, err := store.Get(request, "session-name")
fmt.Println("ERROR FROM store.Get: ", err)
untyped_uid, untyped_ok := session.Values["uid"]
fmt.Println("SESSIONUID before cast: ", untyped_uid)
uid, ok := untyped_uid.(int)
fmt.Println("SESSIONUID after cast: ", uid)

if !untyped_ok || !ok {
fmt.Println("GET SESSION ERRORS.")
fmt.Println("UNTYPED_OK: ", untyped_ok)
fmt.Println("OK: ", ok)
return -1, errors.New("no session")
} else {
return uid, nil
}
}

func set_session(response http.ResponseWriter, request *http.Request, uid int) {
// META: Sets the session cookie and saves it.

session, err := store.Get(request, "session-name")
fmt.Println("SESSION in SET SESSION: ", session)
fmt.Println("SESSION SET ERROR:", err)

session.Values["uid"] = uid
fmt.Println("UID: ", uid)

err = session.Save(request, response)
fmt.Println("SESSION SAVE ERROR:", err)

}

func clear_session(response http.ResponseWriter, request *http.Request) {
// META: Clears the session so that it won't remember the user.

session, err := store.Get(request, "session-name")
fmt.Println("ERROR CLEARING SESSION: ", err)
session.Values["uid"] = -1
session.Save(request, response)
}












share|improve this question



























    0














    I am having trouble deploying my golang web app into a live server.



    While running this code locally, it was working perfectly fine.



    Note that I did the following checks to try to solve this problem:




    1. I made sure that my systemd had the environment variable SESSION_KEY.
      ( Printed out the os.Getenv("SESSION_KEY") and it returned the key.


    2. I tried to check all the returned errors from the below functions.
      ( All of the errors are nil; however when I try to get_session after the fact, it returns false for the ok variable and 0 for the uid)


    3. I tried working this code on firefox, safari, and chrome. ( Chrome is the only one that does not work. )



    I only pulled out the code that had to do with "github.com/gorilla/sessions" package.






    var store = sessions.NewCookieStore(byte(os.Getenv("SESSION_KEY")))


    func init() {

    fmt.Println(store)
    fmt.Println("SESSION KEY BELOW: ", os.Getenv("SESSION_KEY"))

    store.Options = &sessions.Options{
    Domain: "buckler.solutions",
    Path: "/",
    MaxAge: 3600 * 8, // 8 hours
    HttpOnly: true,
    }
    }

    func get_session(request *http.Request) (int, error) {
    // META: Gets the session cookie and returns the result.

    session, err := store.Get(request, "session-name")
    fmt.Println("ERROR FROM store.Get: ", err)
    untyped_uid, untyped_ok := session.Values["uid"]
    fmt.Println("SESSIONUID before cast: ", untyped_uid)
    uid, ok := untyped_uid.(int)
    fmt.Println("SESSIONUID after cast: ", uid)

    if !untyped_ok || !ok {
    fmt.Println("GET SESSION ERRORS.")
    fmt.Println("UNTYPED_OK: ", untyped_ok)
    fmt.Println("OK: ", ok)
    return -1, errors.New("no session")
    } else {
    return uid, nil
    }
    }

    func set_session(response http.ResponseWriter, request *http.Request, uid int) {
    // META: Sets the session cookie and saves it.

    session, err := store.Get(request, "session-name")
    fmt.Println("SESSION in SET SESSION: ", session)
    fmt.Println("SESSION SET ERROR:", err)

    session.Values["uid"] = uid
    fmt.Println("UID: ", uid)

    err = session.Save(request, response)
    fmt.Println("SESSION SAVE ERROR:", err)

    }

    func clear_session(response http.ResponseWriter, request *http.Request) {
    // META: Clears the session so that it won't remember the user.

    session, err := store.Get(request, "session-name")
    fmt.Println("ERROR CLEARING SESSION: ", err)
    session.Values["uid"] = -1
    session.Save(request, response)
    }












    share|improve this question

























      0












      0








      0







      I am having trouble deploying my golang web app into a live server.



      While running this code locally, it was working perfectly fine.



      Note that I did the following checks to try to solve this problem:




      1. I made sure that my systemd had the environment variable SESSION_KEY.
        ( Printed out the os.Getenv("SESSION_KEY") and it returned the key.


      2. I tried to check all the returned errors from the below functions.
        ( All of the errors are nil; however when I try to get_session after the fact, it returns false for the ok variable and 0 for the uid)


      3. I tried working this code on firefox, safari, and chrome. ( Chrome is the only one that does not work. )



      I only pulled out the code that had to do with "github.com/gorilla/sessions" package.






      var store = sessions.NewCookieStore(byte(os.Getenv("SESSION_KEY")))


      func init() {

      fmt.Println(store)
      fmt.Println("SESSION KEY BELOW: ", os.Getenv("SESSION_KEY"))

      store.Options = &sessions.Options{
      Domain: "buckler.solutions",
      Path: "/",
      MaxAge: 3600 * 8, // 8 hours
      HttpOnly: true,
      }
      }

      func get_session(request *http.Request) (int, error) {
      // META: Gets the session cookie and returns the result.

      session, err := store.Get(request, "session-name")
      fmt.Println("ERROR FROM store.Get: ", err)
      untyped_uid, untyped_ok := session.Values["uid"]
      fmt.Println("SESSIONUID before cast: ", untyped_uid)
      uid, ok := untyped_uid.(int)
      fmt.Println("SESSIONUID after cast: ", uid)

      if !untyped_ok || !ok {
      fmt.Println("GET SESSION ERRORS.")
      fmt.Println("UNTYPED_OK: ", untyped_ok)
      fmt.Println("OK: ", ok)
      return -1, errors.New("no session")
      } else {
      return uid, nil
      }
      }

      func set_session(response http.ResponseWriter, request *http.Request, uid int) {
      // META: Sets the session cookie and saves it.

      session, err := store.Get(request, "session-name")
      fmt.Println("SESSION in SET SESSION: ", session)
      fmt.Println("SESSION SET ERROR:", err)

      session.Values["uid"] = uid
      fmt.Println("UID: ", uid)

      err = session.Save(request, response)
      fmt.Println("SESSION SAVE ERROR:", err)

      }

      func clear_session(response http.ResponseWriter, request *http.Request) {
      // META: Clears the session so that it won't remember the user.

      session, err := store.Get(request, "session-name")
      fmt.Println("ERROR CLEARING SESSION: ", err)
      session.Values["uid"] = -1
      session.Save(request, response)
      }












      share|improve this question













      I am having trouble deploying my golang web app into a live server.



      While running this code locally, it was working perfectly fine.



      Note that I did the following checks to try to solve this problem:




      1. I made sure that my systemd had the environment variable SESSION_KEY.
        ( Printed out the os.Getenv("SESSION_KEY") and it returned the key.


      2. I tried to check all the returned errors from the below functions.
        ( All of the errors are nil; however when I try to get_session after the fact, it returns false for the ok variable and 0 for the uid)


      3. I tried working this code on firefox, safari, and chrome. ( Chrome is the only one that does not work. )



      I only pulled out the code that had to do with "github.com/gorilla/sessions" package.






      var store = sessions.NewCookieStore(byte(os.Getenv("SESSION_KEY")))


      func init() {

      fmt.Println(store)
      fmt.Println("SESSION KEY BELOW: ", os.Getenv("SESSION_KEY"))

      store.Options = &sessions.Options{
      Domain: "buckler.solutions",
      Path: "/",
      MaxAge: 3600 * 8, // 8 hours
      HttpOnly: true,
      }
      }

      func get_session(request *http.Request) (int, error) {
      // META: Gets the session cookie and returns the result.

      session, err := store.Get(request, "session-name")
      fmt.Println("ERROR FROM store.Get: ", err)
      untyped_uid, untyped_ok := session.Values["uid"]
      fmt.Println("SESSIONUID before cast: ", untyped_uid)
      uid, ok := untyped_uid.(int)
      fmt.Println("SESSIONUID after cast: ", uid)

      if !untyped_ok || !ok {
      fmt.Println("GET SESSION ERRORS.")
      fmt.Println("UNTYPED_OK: ", untyped_ok)
      fmt.Println("OK: ", ok)
      return -1, errors.New("no session")
      } else {
      return uid, nil
      }
      }

      func set_session(response http.ResponseWriter, request *http.Request, uid int) {
      // META: Sets the session cookie and saves it.

      session, err := store.Get(request, "session-name")
      fmt.Println("SESSION in SET SESSION: ", session)
      fmt.Println("SESSION SET ERROR:", err)

      session.Values["uid"] = uid
      fmt.Println("UID: ", uid)

      err = session.Save(request, response)
      fmt.Println("SESSION SAVE ERROR:", err)

      }

      func clear_session(response http.ResponseWriter, request *http.Request) {
      // META: Clears the session so that it won't remember the user.

      session, err := store.Get(request, "session-name")
      fmt.Println("ERROR CLEARING SESSION: ", err)
      session.Values["uid"] = -1
      session.Save(request, response)
      }








      var store = sessions.NewCookieStore(byte(os.Getenv("SESSION_KEY")))


      func init() {

      fmt.Println(store)
      fmt.Println("SESSION KEY BELOW: ", os.Getenv("SESSION_KEY"))

      store.Options = &sessions.Options{
      Domain: "buckler.solutions",
      Path: "/",
      MaxAge: 3600 * 8, // 8 hours
      HttpOnly: true,
      }
      }

      func get_session(request *http.Request) (int, error) {
      // META: Gets the session cookie and returns the result.

      session, err := store.Get(request, "session-name")
      fmt.Println("ERROR FROM store.Get: ", err)
      untyped_uid, untyped_ok := session.Values["uid"]
      fmt.Println("SESSIONUID before cast: ", untyped_uid)
      uid, ok := untyped_uid.(int)
      fmt.Println("SESSIONUID after cast: ", uid)

      if !untyped_ok || !ok {
      fmt.Println("GET SESSION ERRORS.")
      fmt.Println("UNTYPED_OK: ", untyped_ok)
      fmt.Println("OK: ", ok)
      return -1, errors.New("no session")
      } else {
      return uid, nil
      }
      }

      func set_session(response http.ResponseWriter, request *http.Request, uid int) {
      // META: Sets the session cookie and saves it.

      session, err := store.Get(request, "session-name")
      fmt.Println("SESSION in SET SESSION: ", session)
      fmt.Println("SESSION SET ERROR:", err)

      session.Values["uid"] = uid
      fmt.Println("UID: ", uid)

      err = session.Save(request, response)
      fmt.Println("SESSION SAVE ERROR:", err)

      }

      func clear_session(response http.ResponseWriter, request *http.Request) {
      // META: Clears the session so that it won't remember the user.

      session, err := store.Get(request, "session-name")
      fmt.Println("ERROR CLEARING SESSION: ", err)
      session.Values["uid"] = -1
      session.Save(request, response)
      }





      var store = sessions.NewCookieStore(byte(os.Getenv("SESSION_KEY")))


      func init() {

      fmt.Println(store)
      fmt.Println("SESSION KEY BELOW: ", os.Getenv("SESSION_KEY"))

      store.Options = &sessions.Options{
      Domain: "buckler.solutions",
      Path: "/",
      MaxAge: 3600 * 8, // 8 hours
      HttpOnly: true,
      }
      }

      func get_session(request *http.Request) (int, error) {
      // META: Gets the session cookie and returns the result.

      session, err := store.Get(request, "session-name")
      fmt.Println("ERROR FROM store.Get: ", err)
      untyped_uid, untyped_ok := session.Values["uid"]
      fmt.Println("SESSIONUID before cast: ", untyped_uid)
      uid, ok := untyped_uid.(int)
      fmt.Println("SESSIONUID after cast: ", uid)

      if !untyped_ok || !ok {
      fmt.Println("GET SESSION ERRORS.")
      fmt.Println("UNTYPED_OK: ", untyped_ok)
      fmt.Println("OK: ", ok)
      return -1, errors.New("no session")
      } else {
      return uid, nil
      }
      }

      func set_session(response http.ResponseWriter, request *http.Request, uid int) {
      // META: Sets the session cookie and saves it.

      session, err := store.Get(request, "session-name")
      fmt.Println("SESSION in SET SESSION: ", session)
      fmt.Println("SESSION SET ERROR:", err)

      session.Values["uid"] = uid
      fmt.Println("UID: ", uid)

      err = session.Save(request, response)
      fmt.Println("SESSION SAVE ERROR:", err)

      }

      func clear_session(response http.ResponseWriter, request *http.Request) {
      // META: Clears the session so that it won't remember the user.

      session, err := store.Get(request, "session-name")
      fmt.Println("ERROR CLEARING SESSION: ", err)
      session.Values["uid"] = -1
      session.Save(request, response)
      }






      google-chrome session web go browser






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 19 '18 at 18:31









      Randy DiazRandy Diaz

      11




      11
























          1 Answer
          1






          active

          oldest

          votes


















          0














          I think some proper error handling would help you quickly debug your problem and see just exactly what may be the problem.



          In Golang its standard practice to handle the error right after its declared.
          Example: in your get_session method



          session, err := store.Get(request, "session-name")
          if err != nil {
          return -1, err
          }


          The problem in your code is that you arent stopping execution if an error occurs which makes it 10x harder to figure out where something might've went wrong.



          Sometimes its even helpful (for debugging) to add small comments that will help you even pinpoint the error more, like:



          session, err := store.Get(request, "session-name")
          if err != nil {
          fmt.Println("hey an error occurred trying to get the session: ",err.Error())
          return -1, err
          }


          I think once you put in some proper error handling you can debug your issue quickly. (And handle every error, dont ignore any)






          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',
            autoActivateHeartbeat: false,
            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%2f53380674%2fgolang-gorilla-session-not-working-in-chrome-browser-but-works-on-safari-and-fir%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









            0














            I think some proper error handling would help you quickly debug your problem and see just exactly what may be the problem.



            In Golang its standard practice to handle the error right after its declared.
            Example: in your get_session method



            session, err := store.Get(request, "session-name")
            if err != nil {
            return -1, err
            }


            The problem in your code is that you arent stopping execution if an error occurs which makes it 10x harder to figure out where something might've went wrong.



            Sometimes its even helpful (for debugging) to add small comments that will help you even pinpoint the error more, like:



            session, err := store.Get(request, "session-name")
            if err != nil {
            fmt.Println("hey an error occurred trying to get the session: ",err.Error())
            return -1, err
            }


            I think once you put in some proper error handling you can debug your issue quickly. (And handle every error, dont ignore any)






            share|improve this answer


























              0














              I think some proper error handling would help you quickly debug your problem and see just exactly what may be the problem.



              In Golang its standard practice to handle the error right after its declared.
              Example: in your get_session method



              session, err := store.Get(request, "session-name")
              if err != nil {
              return -1, err
              }


              The problem in your code is that you arent stopping execution if an error occurs which makes it 10x harder to figure out where something might've went wrong.



              Sometimes its even helpful (for debugging) to add small comments that will help you even pinpoint the error more, like:



              session, err := store.Get(request, "session-name")
              if err != nil {
              fmt.Println("hey an error occurred trying to get the session: ",err.Error())
              return -1, err
              }


              I think once you put in some proper error handling you can debug your issue quickly. (And handle every error, dont ignore any)






              share|improve this answer
























                0












                0








                0






                I think some proper error handling would help you quickly debug your problem and see just exactly what may be the problem.



                In Golang its standard practice to handle the error right after its declared.
                Example: in your get_session method



                session, err := store.Get(request, "session-name")
                if err != nil {
                return -1, err
                }


                The problem in your code is that you arent stopping execution if an error occurs which makes it 10x harder to figure out where something might've went wrong.



                Sometimes its even helpful (for debugging) to add small comments that will help you even pinpoint the error more, like:



                session, err := store.Get(request, "session-name")
                if err != nil {
                fmt.Println("hey an error occurred trying to get the session: ",err.Error())
                return -1, err
                }


                I think once you put in some proper error handling you can debug your issue quickly. (And handle every error, dont ignore any)






                share|improve this answer












                I think some proper error handling would help you quickly debug your problem and see just exactly what may be the problem.



                In Golang its standard practice to handle the error right after its declared.
                Example: in your get_session method



                session, err := store.Get(request, "session-name")
                if err != nil {
                return -1, err
                }


                The problem in your code is that you arent stopping execution if an error occurs which makes it 10x harder to figure out where something might've went wrong.



                Sometimes its even helpful (for debugging) to add small comments that will help you even pinpoint the error more, like:



                session, err := store.Get(request, "session-name")
                if err != nil {
                fmt.Println("hey an error occurred trying to get the session: ",err.Error())
                return -1, err
                }


                I think once you put in some proper error handling you can debug your issue quickly. (And handle every error, dont ignore any)







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 19 '18 at 20:21









                Yevgeniy VasilyevYevgeniy Vasilyev

                55




                55






























                    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%2f53380674%2fgolang-gorilla-session-not-working-in-chrome-browser-but-works-on-safari-and-fir%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

                    MongoDB - Not Authorized To Execute Command

                    in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

                    How to fix TextFormField cause rebuild widget in Flutter