Couldn't set cookie with flaskWhy does the session cookie work when serving from a domain but not when using an IP?How do I set/unset a cookie with jQuery?Local Storage vs CookiesHow to get data received in Flask requestSet cookie and get cookie with JavaScriptDomain-wide cookies not saving in Chrome for .uk Second Level DomainFlask session cookies not set on browsers.. Deployed on Amazon EC2Cookie not setting with FlaskHow to save cookies from Flask API on Angular 5 POST requestFlask session empty after domain forwarding to PythonAnywhere, only in Safari (webkit)Browser not saving cookie for explicit domain

Why is participating in the European Parliamentary elections used as a threat?

Limit max CPU usage SQL SERVER with WSRM

Why do Radio Buttons not fill the entire outer circle?

El Dorado Word Puzzle II: Videogame Edition

Personal or impersonal in a technical resume

Would this string work as string?

Does the Crossbow Expert feat's extra crossbow attack work with the reaction attack from a Hunter ranger's Giant Killer feature?

What the heck is gets(stdin) on site coderbyte?

How to test the sharpness of a knife?

Alignment of six matrices

Is anti-Brahminism a quality of Asuras and Rakshasas?

How do I fix the group tension caused by my character stealing and possibly killing without provocation?

Is there a distance limit for minecart tracks?

Overlapping circles covering polygon

Can you identify this lizard-like creature I observed in the UK?

Anime with legendary swords made from talismans and a man who could change them with a shattered body

Quoting Keynes in a lecture

Pre-Employment Background Check With Consent For Future Checks

Do you waste sorcery points if you try to apply metamagic to a spell from a scroll but fail to cast it?

Do I have to know the General Relativity theory to understand the concept of inertial frame?

What (the heck) is a Super Worm Equinox Moon?

Language involving irrational number is not a CFL

Proving an identity involving cross products and coplanar vectors

How can I, as DM, avoid the Conga Line of Death occurring when implementing some form of flanking rule?



Couldn't set cookie with flask


Why does the session cookie work when serving from a domain but not when using an IP?How do I set/unset a cookie with jQuery?Local Storage vs CookiesHow to get data received in Flask requestSet cookie and get cookie with JavaScriptDomain-wide cookies not saving in Chrome for .uk Second Level DomainFlask session cookies not set on browsers.. Deployed on Amazon EC2Cookie not setting with FlaskHow to save cookies from Flask API on Angular 5 POST requestFlask session empty after domain forwarding to PythonAnywhere, only in Safari (webkit)Browser not saving cookie for explicit domain













1















For development I am using vuejs which is being served by webpack at my local address: 172.18.0.77:8080 and flask that is run by Werkzeug at address 172.18.0.77:5000. I am trying to set cookie to some GET request by running this code:



response_data = Response(json.dumps(some_json_data, indent=True), status=200, mimetype='application/json')
response_data.set_cookie('user_session_id', value='12345', domain='172.18.0.77:8080')
return response_data


But when I am trying to read this cookie with following code request.cookies.get('user_session_id') I am receiving only None value.



I also tried to set cookie by changing domain to 172.18.0.77 like:



 response_data.set_cookie('user_session_id', value='12345', domain='172.18.0.77')


But it also doesn't work










share|improve this question






















  • @asergio Thanks for response! I just have tried to migrate to local domains using hosts file and set cookies with this code response_data.set_cookie('user_session_id', value='12345', domain='domain.local:8080') and just response_data.set_cookie('user_session_id', value='12345', domain='domain.local') but flask still could't read this cookies. By the way, as it was with just ip's I can see coolies in headers.

    – Bogdan Lashkov
    Mar 7 at 23:00















1















For development I am using vuejs which is being served by webpack at my local address: 172.18.0.77:8080 and flask that is run by Werkzeug at address 172.18.0.77:5000. I am trying to set cookie to some GET request by running this code:



response_data = Response(json.dumps(some_json_data, indent=True), status=200, mimetype='application/json')
response_data.set_cookie('user_session_id', value='12345', domain='172.18.0.77:8080')
return response_data


But when I am trying to read this cookie with following code request.cookies.get('user_session_id') I am receiving only None value.



I also tried to set cookie by changing domain to 172.18.0.77 like:



 response_data.set_cookie('user_session_id', value='12345', domain='172.18.0.77')


But it also doesn't work










share|improve this question






















  • @asergio Thanks for response! I just have tried to migrate to local domains using hosts file and set cookies with this code response_data.set_cookie('user_session_id', value='12345', domain='domain.local:8080') and just response_data.set_cookie('user_session_id', value='12345', domain='domain.local') but flask still could't read this cookies. By the way, as it was with just ip's I can see coolies in headers.

    – Bogdan Lashkov
    Mar 7 at 23:00













1












1








1








For development I am using vuejs which is being served by webpack at my local address: 172.18.0.77:8080 and flask that is run by Werkzeug at address 172.18.0.77:5000. I am trying to set cookie to some GET request by running this code:



response_data = Response(json.dumps(some_json_data, indent=True), status=200, mimetype='application/json')
response_data.set_cookie('user_session_id', value='12345', domain='172.18.0.77:8080')
return response_data


But when I am trying to read this cookie with following code request.cookies.get('user_session_id') I am receiving only None value.



I also tried to set cookie by changing domain to 172.18.0.77 like:



 response_data.set_cookie('user_session_id', value='12345', domain='172.18.0.77')


But it also doesn't work










share|improve this question














For development I am using vuejs which is being served by webpack at my local address: 172.18.0.77:8080 and flask that is run by Werkzeug at address 172.18.0.77:5000. I am trying to set cookie to some GET request by running this code:



response_data = Response(json.dumps(some_json_data, indent=True), status=200, mimetype='application/json')
response_data.set_cookie('user_session_id', value='12345', domain='172.18.0.77:8080')
return response_data


But when I am trying to read this cookie with following code request.cookies.get('user_session_id') I am receiving only None value.



I also tried to set cookie by changing domain to 172.18.0.77 like:



 response_data.set_cookie('user_session_id', value='12345', domain='172.18.0.77')


But it also doesn't work







python vue.js cookies flask session-cookies






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 7 at 22:02









Bogdan LashkovBogdan Lashkov

1378




1378












  • @asergio Thanks for response! I just have tried to migrate to local domains using hosts file and set cookies with this code response_data.set_cookie('user_session_id', value='12345', domain='domain.local:8080') and just response_data.set_cookie('user_session_id', value='12345', domain='domain.local') but flask still could't read this cookies. By the way, as it was with just ip's I can see coolies in headers.

    – Bogdan Lashkov
    Mar 7 at 23:00

















  • @asergio Thanks for response! I just have tried to migrate to local domains using hosts file and set cookies with this code response_data.set_cookie('user_session_id', value='12345', domain='domain.local:8080') and just response_data.set_cookie('user_session_id', value='12345', domain='domain.local') but flask still could't read this cookies. By the way, as it was with just ip's I can see coolies in headers.

    – Bogdan Lashkov
    Mar 7 at 23:00
















@asergio Thanks for response! I just have tried to migrate to local domains using hosts file and set cookies with this code response_data.set_cookie('user_session_id', value='12345', domain='domain.local:8080') and just response_data.set_cookie('user_session_id', value='12345', domain='domain.local') but flask still could't read this cookies. By the way, as it was with just ip's I can see coolies in headers.

– Bogdan Lashkov
Mar 7 at 23:00





@asergio Thanks for response! I just have tried to migrate to local domains using hosts file and set cookies with this code response_data.set_cookie('user_session_id', value='12345', domain='domain.local:8080') and just response_data.set_cookie('user_session_id', value='12345', domain='domain.local') but flask still could't read this cookies. By the way, as it was with just ip's I can see coolies in headers.

– Bogdan Lashkov
Mar 7 at 23:00












1 Answer
1






active

oldest

votes


















0














if you use axios in vuejs, i suggest that you can add withCredentials: true



const instance = axios.create(
withCredentials: true,
....
)


And in flask



@app.after_request
def handle_credentials(response):
response.headers["Access-Control-Allow-Credentials"] = True
return response





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%2f55053504%2fcouldnt-set-cookie-with-flask%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














    if you use axios in vuejs, i suggest that you can add withCredentials: true



    const instance = axios.create(
    withCredentials: true,
    ....
    )


    And in flask



    @app.after_request
    def handle_credentials(response):
    response.headers["Access-Control-Allow-Credentials"] = True
    return response





    share|improve this answer



























      0














      if you use axios in vuejs, i suggest that you can add withCredentials: true



      const instance = axios.create(
      withCredentials: true,
      ....
      )


      And in flask



      @app.after_request
      def handle_credentials(response):
      response.headers["Access-Control-Allow-Credentials"] = True
      return response





      share|improve this answer

























        0












        0








        0







        if you use axios in vuejs, i suggest that you can add withCredentials: true



        const instance = axios.create(
        withCredentials: true,
        ....
        )


        And in flask



        @app.after_request
        def handle_credentials(response):
        response.headers["Access-Control-Allow-Credentials"] = True
        return response





        share|improve this answer













        if you use axios in vuejs, i suggest that you can add withCredentials: true



        const instance = axios.create(
        withCredentials: true,
        ....
        )


        And in flask



        @app.after_request
        def handle_credentials(response):
        response.headers["Access-Control-Allow-Credentials"] = True
        return response






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 8 at 1:18









        jiangyx3915jiangyx3915

        463




        463





























            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.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55053504%2fcouldnt-set-cookie-with-flask%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

            Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

            Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

            2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived