ฉันอ่านแล้วว่าส่งคุกกี้ด้วย curlใช้ได้ แต่ไม่ใช่สำหรับฉัน
ฉันมีREST
จุดสิ้นสุดเป็น:
class LoginResource(restful.Resource):
def get(self):
print(session)
if 'USER_TOKEN' in session:
return 'OK'
return 'not authorized', 401
เมื่อฉันพยายามเข้าถึงเป็น:
curl -v -b ~/Downloads/cookies.txt -c ~/Downloads/cookies.txt http://127.0.0.1:5000/
* About to connect() to 127.0.0.1 port 5000 (#0)
* Trying 127.0.0.1...
* connected
* Connected to 127.0.0.1 (127.0.0.1) port 5000 (#0)
> GET / HTTP/1.1
> User-Agent: curl/7.27.0
> Host: 127.0.0.1:5000
> Accept: */*
>
* HTTP 1.0, assume close after body
< HTTP/1.0 401 UNAUTHORIZED
< Content-Type: application/json
< Content-Length: 16
< Server: Werkzeug/0.8.3 Python/2.7.2
< Date: Sun, 14 Apr 2013 04:45:45 GMT
<
* Closing connection #0
"not authorized"%
ฉันอยู่ที่ไหน~/Downloads/cookies.txt
:
cat ~/Downloads/cookies.txt
USER_TOKEN=in
และเซิร์ฟเวอร์ไม่ได้รับอะไรเลย:
127.0.0.1 - - [13/Apr/2013 21:43:52] "GET / HTTP/1.1" 401 -
127.0.0.1 - - [13/Apr/2013 21:45:30] "GET / HTTP/1.1" 401 -
<SecureCookieSession {}>
<SecureCookieSession {}>
127.0.0.1 - - [13/Apr/2013 21:45:45] "GET / HTTP/1.1" 401 -
อะไรที่ฉันขาดหายไป?
-b
ตัวเลือกที่มีตัวเลือกอย่างเดียวไม่ทำงานทำให้เกิดข้อผิดพลาดเดียวกัน :(
-b
ไฟล์คุกกี้ไม่ได้เป็นเพียงก็ควรจะเป็นเช่นเดียวกับรูปแบบของโถคุกกี้ที่เขียนโดยใช้var=value
-c
ไปที่ไซต์ที่ส่งคุกกี้ด้วยตัวเลือกนี้และดูไฟล์ผลลัพธ์
-c
ตัวเลือกบอกcurl
ให้ใช้ไฟล์คุกกี้ของคุณเป็น jar jar ของเอาต์พุตซึ่งอาจไม่ใช่สิ่งที่คุณต้องการ