Django session management for Fuse app

Hi,
Great job with Fuse!
Can i build an app with fuse, where, Django can save a user’s session data from an HTTP request sent with say fetch api. I don’t have plans to use OAuth2.
Something like,

def djangoview(request):
if request.method == ‘POST’:
request.session[“keyname”] = “value”

Hi snehadeep,

it’s not entirely clear what your question really is about or how that’s related to Fuse.

If you’re asking whether you can put stuff in headers when you make a fetch request from Fuse, then the answer is yes: https://www.fusetools.com/docs/fusejs/http

Thanks Uldis,

My question got answered (“can put stuff in headers”) :slight_smile: Yay! Went through the documentation. Fuse is amazing!