Require entire cookie instead of just a session ID

This commit is contained in:
Logan Williams
2022-07-27 14:28:11 +02:00
parent b0d294c835
commit 2bfd8846c2

View File

@@ -139,7 +139,7 @@ html_template = '''<html>
def main():
parser = argparse.ArgumentParser(description="Get a list of Instagram locations near a lat/lng")
parser.add_argument("--session", action="store", dest="session")
parser.add_argument("--cookie", action="store", dest="cookie")
parser.add_argument("--json", action="store", dest="output")
parser.add_argument("--geojson", action="store", dest="geojson")
parser.add_argument("--map", action="store", dest="map")
@@ -151,7 +151,7 @@ def main():
args = parser.parse_args()
cookie = 'sessionid=' + args.session
cookie = args.cookie
date_var = ''
if args.date is not None: