I'm new to Django and am trying to build an app that uses the FB API. In order not to have to log in every time I load a page in my app, Facebook suggests I use a channel file with the following for users of PHP:
<?php
$cache_expire = 60*60*24*365;
header("Pragma: public");
header("Cache-Control: maxage=".$cache_expire);
header('Expires: '.gmdate('D, d M Y H:i:s', time()+$cache_expire).' GMT');
?>
<script src="//connect.facebook.net/en_US/all.js"></script>
I'm wondering how I can effect the same for my Django app. I don't want to use any of the plethora of Django-/Python-Facebook integrations out there since they usually include too many needless features that muck with my backend or too few features of the kind I don't like. Thanks for any help.