内嵌表格到其他网页登陆问题?

通过官方内嵌表格到其他网页 (iframe 方式) 需要添加以下选项以支持用户登录,SESSION_COOKIE_SAMESITE = ‘None’
SESSION_COOKIE_SECURE = True
CSRF_COOKIE_SAMESITE = ‘None’
CSRF_COOKIE_SECURE = True
iframe className=“dtable-embed” src=“http://xxx.xx.com/” frameBorder=“0” width=“100%” height=“667” style=“background: transparent; border: 1px solid #ccc;”>这段嵌入方式无法登陆
能否写个完整代码教程