Browse Source

Update README.md

Matt Coles 9 years ago
parent
commit
9fe12ca778
1 changed files with 2 additions and 2 deletions
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -55,7 +55,7 @@ The server will then respond with a JSON object that looks something like this:
55 55
 {
56 56
     "registered": 1, // Value is 1 or 0 based on whether registration was
57 57
     successful
58
-    "auth-key": $2a$10$.X9YrNyd2R7b2ycAumHn.ONiINs2bCkRDupugu6sjZkUkPmXSaSra, // Value is an authentication key to be used in API requests
58
+    "auth-key": "$2a$10$.X9YrNyd2R7b2ycAumHn.ONiINs2bCkRDupugu6sjZkUkPmXSaSra", // Value is an authentication key to be used in API requests
59 59
     "error": 0 // Error code, if an error occured. 0 indicates no error.
60 60
 }
61 61
 ```
@@ -77,7 +77,7 @@ will be returned:
77 77
 ```javascript
78 78
 {
79 79
     "logged_in": 1, // Value is 1 or 0 whether or not the login was successful
80
-    "auth-key": $2a$10$.X9YrNyd2R7b2ycAumHn.ONiINs2bCkRDupugu6sjZkUkPmXSaSra, // Only present if logged_in == 1, to be used in API requests
80
+    "auth-key": "$2a$10$.X9YrNyd2R7b2ycAumHn.ONiINs2bCkRDupugu6sjZkUkPmXSaSra", // Only present if logged_in == 1, to be used in API requests
81 81
     "error": 0 // Error code, if an error occured. 0 indicates no error.
82 82
 }
83 83
 ```