我在Django框架中拥有Web应用程序并托管了Azure。我在RShiny中有另一个Web应用程序,并将其托管在AWS中。我们正在为django应用程序提供适当的身份验证过程。一旦用户登录django应用程序,我们希望该用户应该能够访问RShiny应用程序而无需再次请求身份验证。为此,我们在具有重定向网址Rshiny的cookie中传递令牌值,但是我们无法在Rshiny应用程序中获取cookie。在chrome的开发人员工具中都看不到任何cookie。 用户单击按钮后我们编写的django代码
def buttonclick(request):
response=redirect('http://example.com')
expires=datetime.now()+timedelta(seconds=480)
response.set_cookie('token',value='tokenmmx',expires=expires)
return response
“ http://example.com”是Rshiny应用程序的网址