Apparently the facebook key can have non alphanumeric stuff in it. Who knew?
authorJames French <[email protected]>
Mon, 4 Mar 2013 09:07:12 +0000 (17:07 +0800)
committerJames French <[email protected]>
Mon, 4 Mar 2013 09:07:12 +0000 (17:07 +0800)
fbcal.py

index 8068f5e..6e6c9f7 100755 (executable)
--- a/fbcal.py
+++ b/fbcal.py
@@ -42,9 +42,9 @@ if __name__ == '__main__':
        except:
                exitQuiet()
 
-       # The user's key will be a 16 character alphanumeric string
+       # The user's key will be a 16 character string
        key = form['key'].value
-       re.search('[\W_]+', key) and exitQuiet()
+       re.search('[&?]+', key) and exitQuiet()
        len(key) == 16 or exitQuiet()
 
        # Okay, we're happy that the input is sane, lets serve up some data

UCC git Repository :: git.ucc.asn.au