+++ access token คืออะไรใน facebook ++++
😋 ปกติ facebook เปิดให้เว็บ (รวมทั้งแอพ) ที่เราเขียนขึ้น
สามารถใช้ระบบ login ของ facebook ได้
ทำให้เว็บนั้นได้สิทธิเข้าถึงข้อมูลส่วนตัวของ user นั้นๆ บน facebook
.
และในหลายเว็บไซต์ เราคงเคยเห็น
ขอแค่มีแอคเคาท์เฟสบุ๊คก็สามารถล็อกอินได้เลย
ไม่ต้องเสียเวลายุ่งยาก กรอกสมัครสมาชิกใหม่แต่อย่างใด
:
โดยในโพสต์นี้จะขออ้างอิง
การใช้ระบบล็อกอิน facebook
ซึ่งเบื้องหลังความสำเร็จนั้น facebook จะแจก access token
เพื่อให้เว็บใดๆ สามารถนำไปใช้จัดการยูสเซอร์ล็อกอินได้
:
ก่อนจะพูดถึง access token ขอย้อนไปสมัยวัยกระเตาะปี 2534
เมื่อ "ทิม เบอร์เนิร์ส-ลี" ได้ทำคลอดเว็บไซต์แรกของโลก
จนเป็นสิ่งสามัญประจำบ้านที่มนุษย์โลกใช้เป็น
:
❣ แต่จุดอ่อนของฉัน ....อยู่ที่หัวใจ
เฮยไม่ช่ายแหละ จุดอ่อนของเว็บไซต์
ก็คือมันใช้โปโตคอล HTTP
ซึ่งมันเป็นแบบ stateless ไม่จำสถานะอะไรทั้งนั้น
ความหมายก็คือ ตัว Server ความจำสั้นมาก เป็นโรคอัลไซเมอร์
พอมันรับ request จาก browser
ก็จำไม่ได้ว่ามาจากไหน???
ใครส่งมาจำไม่ได้แล้ว!!!!!
:
🤔 เพื่อแก้ปัญานี้ในทางเทคนิค
เขาจะให้ server ส่ง session id (หรือ session token)
ซึ่ง session id มันเป็นรหัสบางอย่าง ที่เราอ่านไม่ออก แถมยาวด้วย
มันจะถูกส่งไปให้ browser เก็บค่านี้ไว้ในคุ๊กกี้เสี่ยงทาย
.
..ผิดๆ ไม่ใช่คุ๊กกี้นั้น ..แต่ cookies ที่ว่าคือไฟล์ text
Server จะส่ง session id ไปให้ browser
เก็บค่าไว้ใน cookies (เก็บใส่ text อยู่ฝั่ง browser)
:
เวลาเขียนโปรแกรมในฝั่ง server
อย่าง PHP เมื่อใช้คำสั่ง session_start();
จะเป็นการบอกให้ browser เก็บค่า session id ในรูป text เช่น
PHPSESSID=tqb4s5q7k25234eabbvs11dp02
(session id เป็นรหัสที่สุ่มขึ้นมา)
:
แต่ถ้าเป็นภาษาอื่น ก็อาจเห็นเป็นคำอื่นนะครับ
เช่น JSESSIONID (Java EE), PHPSESSID (PHP), และ ASPSESSIONID (Microsoft ASP).
.
😉 ถึงตรงนี้ session id ...อาจมองว่าเป็นรหัสประจำตัวก็ได้
:
ต่อไปนี้เวลาผู้ใช้กดคลิกอะไรบนหน้าเว็บ
ทาง browser ก็จะใจดี
แอบส่ง session id ที่ว่านี้ ไปให้ server อัตโนมัติ
ทำให้ server หายจากอัลไซเมอร์
...จำได้แล้วว่า request ส่งมาจากไหน ...เย้ เย้
.
ดังนั้นถ้าเกิด request ที่ส่งเข้ามา
มันมี session id ค่าเดียวกัน
ก็ถือว่าเป็นพรรคพวกเดียวกัน
(ศัพท์ทางคอมจะบอกว่า request พวกนี้อยู่ SESSION เดียวกัน)
.
แล้วถ้าไม่ใช่ session id เดียวกัน
ก็ถือว่า request นั้น ไม่ใช่พวกพ้องเดียวกัน
:
👉 ประโยชน์ของ session id
จะถูกนำไปใช้ร่วมกับกลไก login/logout
1) เมื่อ user ชื่อ XXX ทำการ login เข้ามา ก็จะมี session id เป็นรหัสประจำตัวอันหนึ่ง
2) พออีก user ชื่อ YYY ทำการ login เข้ามา จะมี session id เป็นรหัสประจำตัวคนละตัว
3) พอทั้งสอง user ทำการ logout ก็จะทำให้ session id หมดอายุ
:
คำถาม ถ้าเราไปกดล้าง cookies ทั้งหมดใน browser จะเกิดอะไรขึ้น?
- คำตอบค่า session id จะหายไปหมด
- ดังนั้นใครแอบ login ค้างเว็บโป้ เว็บโน่นนี้นั่น อะไรไว้ ...หึหึๆๆ
- ก็ต้อง logout อัตโนมัติ เพื่อ login ใหม่ ...เศร้ามั๊ยละ
(server จำเราไม่ได้แล้ว
เพราะ browser ไม่ส่ง session id ไปให้)
:
เรื่อง session id ฟังเหมือนดี
😨 แต่การใช้ร่วมกับ user/password เพื่อ login จะมีข้อเสีย เช่น
1) ง่ายต่อ hacker มาแอบลอบขี่ session
เพื่อสวมรอยใช้ sesion id (Cross-Site Request Forgery: CSRF)
...ทางเทคนิคขอไม่พูดถึง หาอ่านตามเว็บได้
2) เป็นภาระให้ server ต้องจำ session id ว่าเป็นของ user คนใด มีสิทธิอะไรบ้าง และจำข้อมูลอื่นๆ ของ user เป็นต้น
3) แล้วถ้าจะให้ user เดียวกัน login คนละอุปกรณ์ เช่น
เว็บก็ได้ มือถือก็ดี ...จะยุ่งยากมากขึ้น (ต้องก็อปปี้ session ไปให้)
4) และข้อเสียอื่นๆ ทีไม่ได้กล่าวถึง
:
😘 แต่เขาก็มีเทคนิคเพื่อแก้ทางนะครับ
.
ก็คือใช้สิ่งที่เรียกว่า "acces token "
ซึ่งการที่จะได้ acces token
ก็ต้อง login ด้วย user/password เพื่อไปแลกเอามา
...ต้องยืนหมู ยืนแมวกันก่อน ถึงจะได้ access token
จากนั้นเราจะใช้มันแทนการ login ได้เลย
.
ทำให้เราไม่ต้องป้อน user/password บ่อยๆ
แล้วแต่ละ user ก็จะได้ access token หน้าตาไม่เหมือนกันเด็ดขาด
พอถึงเวลา user ทำการ logout ออกไป ตัว access token ก็จะหมดอายุทันที
:
😙 ถึงตรงนี้ access token อาจเปรียบได้เหมือนกุญแจ
หรืออาจมองเป็นตั๋ว หรือบัตรผ่านก็ได้ ...แล้วแต่จินตนาการเปรียบเปรย
ข้อแตกต่างจาก session id ก็คือ
1) access token จะไม่ถูกเก็บใน cookies
2) access token จะเก็บข้อมูล ที่พอเปิดเผยได้
เช่น user_id, สิทธิต่างๆ , วันหมดอายุ
(ไม่เป็นภาระให้ server จำข้อมูลพวกนี้)
:
ยิ่งถ้านำ access token ไปใช้งานร่วมกับกลไกล login ก็จะเห็นข้อดี เช่น
1) ป้องกัน hacker ไม่ให้แอบใช้ session ด้วยวิธี Cross-Site Request Forgery (CSRF)
2) สามารถ login จากมือถือ และเว็บ เพียงแค่ใช้ user เดียวกัน ก็ทำได้ง่ายดาย
ก็แค่แจก access token ให้แค่นั้น ...ก็เหมือนที่ facebook ทำไง
(ไม่เก็บไว้ใน cookies ของ browser)
3) ตัว server สามารถทิ้งหน้าที่ login/logout อันเสียยุ่งยาก ...โยนไปให้ authenticate service ข้างนอกทำแทน
4) ตัว server ไม่ต้องมีภาระดูแลข้อมูล user
:
😀 ตัดกลับมาดูกลไก login ด้วย user/password ของ facebook
ซึ่งคอนเซปต์ตามรูปที่โพสต์เลยครับ (เป็นตัวอย่าง php)
สรุปง่ายๆ
- เวลา user ทำการ login
- มันจะแอบสวิซ์ไปหา facebook ให้ทำหน้าที่ login แทน
- เมื่อนั้น facebook จะโยน access token กลับมาให้เว็บเรา
- จากนั้น user จะใช้มันเป็นบัตรผ่าน ไม่ต้อง login ซ้ำอีกแหละ
:
ซึ่ง Access token ของเฟสบุ๊คมีหลายชนิด เช่น
-User Access Token
-App Access Token
-Page Access Token
-Client Token
แต่ละชนิดมีสิทธิแตกต่างกันได้ ขอไม่ลงลึกนะ
:
👉 เรื่อง session id กับ access token ที่เล่ามาทั้งหมดนี้
ถือเป็นขอหวานอันแสนหอมที่ hacker ชอบมากๆ
ถ้าพวกเขาขโมยได้ รับรองว่าจะสวมรอย user ที่กำลัง login ได้
จากนั้น hacker จะได้สิทธิทุกอย่างเหมือน user นั้นหมด ...เสร็จโจรละที่นี้
.
ยกเว้นเราจะ logout ออก
เพื่อให้ session id หรือ access token หมดอายุ
เมื่อนั้น hacker ก็จะหมดสิทธิสวมรอย
:
ในมุม user ก็แค่ล็อกอินใช้งานอย่างเดียว
ไม่ต้องสนใจ access token เบื้องหลังเลย
แต่ถ้าเป็น #โปรแกรมเมอร์ ต้องคำนึงถึงเป็นพิเศษ
เพราะขนาดสี่ตีนยังรู้พลาด นักปราชญ์ยังรู้พลั้ง
ยักษ์ใหญ่สุด พี่เบิ้มอย่าง facebook
ยังพลาดปล่อยให้ access token หลุดออกมาได้เลย จนเป็นข่าวสะเทือนใหญ่โต
.
👌 ด้วยเหตุนี้การเขียนโปรแกรม
ก็ขอให้คำนึงถึงเรื่อง access token ห้ามหลุดรอด
ให้ปลอดภัยจาก hakcker เป็นดีที่สุด
โชคดีทุกท่านครับ
:
:
เขียนโดย โปรแกรมเมอร์ไทย thai programmer
:
+++++++++++++
อ้างอิง
1) https://developers.facebook.com/…/h…/example_facebook_login…
2) https://developers.facebook.com/…/facebook-l…/access-tokens…
同時也有43部Youtube影片,追蹤數超過22萬的網紅BorntoDev,也在其Youtube影片中提到,Session เป็นพื้นฐานสำคัญสำหรับการสร้างเว็บแอพพลิเคชั่น สามารถประยุกต์ใช้งานได้หลากหลาย แถมใน ASP.NET ยังทำให้ใช้งานง่ายอีกด้วย ถ้าอยากรู้มาเรียนกันเลย...
「asp session」的推薦目錄:
- 關於asp session 在 โปรแกรมเมอร์ไทย Thai programmer Facebook 的最讚貼文
- 關於asp session 在 Linora Low Facebook 的最讚貼文
- 關於asp session 在 โปรแกรมเมอร์ไทย Thai programmer Facebook 的最佳貼文
- 關於asp session 在 BorntoDev Youtube 的最讚貼文
- 關於asp session 在 吳老師教學部落格 Youtube 的精選貼文
- 關於asp session 在 吳老師教學部落格 Youtube 的最讚貼文
- 關於asp session 在 ASP.NET Session 值為空或是無法改變的問題 - 亂馬客 的評價
- 關於asp session 在 ASP.NET session vs session state and cookies vs cookie less 的評價
- 關於asp session 在 aspnet/AspNetSessionState: ASP.NET Session State ... - GitHub 的評價
asp session 在 Linora Low Facebook 的最讚貼文
ISOMETRONICS ! The only "flower" at the gym who lifts Haha.
.
Here's something I've seen before but never got to try it till the internship at ASP with @benperformancecoach.
.
This is an advanced training technique to help destroy plateaus which you probably won't see unless you are working with a good strength coach.
.
Heres the Set up.
1. With isometronics you place two pins in rack bout 4 to 6 inches apart to limit full ROM.
.
2. Weight is dependent on what the program calls for in terms of reps and tempo.
.
3. Here we pre fatigue the muscle with 3 reps then the last you do an lift like as if I'm going to pull the bar right off the pins for bout 10 seconds. Rest then go again. I did my final lift at 65kg. Felt like I could've gone more but for any workout test with lighter weight.
.
This is a type of training which is extremely taxing on your central nervous system = you will shake and your brain will get a bit foggy after the session cause you shock your CNS.
.
It's good if you know when and how to do it, which depends too on your fitness level, workout and CNS. Its not meant for beginners or for typical training 5 days a week protocol. Very interesting concept, get a coach who knows how to implement if you are curious like the peeps here at @trainasp. 😉
.
Wearing @underarmourmy #UAFloral
.
#UnderArmourMY #Isometronics #AdvanceStrengthTechniques #BreakPlateaus #TrainASP #BrainFog #NewMethods #ASPPassionArmy #LevelUp
asp session 在 โปรแกรมเมอร์ไทย Thai programmer Facebook 的最佳貼文
+++ access token คืออะไรใน facebook ++++
😋 ปกติ facebook เปิดให้เว็บ (รวมทั้งแอพ) ที่เราเขียนขึ้น
สามารถใช้ระบบ login ของ facebook ได้
ทำให้เว็บนั้นได้สิทธิเข้าถึงข้อมูลส่วนตัวของ user นั้นๆ บน facebook
....
Continue Reading+++ What is access token on Facebook ++++
😋 Facebook is usually open for web (including apps) that we write up.
Facebook login system can be used
Make that web access to user's personal information on Facebook.
.
And in many sites, we must have seen.
Just have an account on Facebook, you can log in.
No need to waste time. Fill out a new subscription.
:
In this post will quote
Using Facebook Login
Behind that success, Facebook will give away access token
So that any web can manage user login
:
Before talking about access token, let me go back to the age of 2534
When "Timberners-Lee" delivered the world's first website.
It's a common thing that human beings use to be.
:
❣ but my weaknesses.... is in the heart
Hey, it's not the weaknesses of the website.
Well it uses HTTP potocol
Which is stateless. Don't remember any status.
The meaning is that Server is very short of memory. Alzheimer's disease.
When it gets request from browser
I don't remember where it came from???
Who sent it, I can't remember anymore!!!!!
:
🤔 to solve this cuddle nha technically
He will give you a server to send session id (or session token)
Which session id is something we can't read and long
It will be sent to browser. Keep this in the cookie.
.
.. Wrong is not that cookie.. but cookies are text
Server will send session id to browser
Keep the value in cookies (keep text on browser side)
:
Programming time on server side
Like PHP when using session _ start ();
Will tell browser to collect session id in text photos such as
PHPSESSID=tqb4s5q7k25234eabbvs11dp02
(session id is a random code)
:
But if it's another language, it may be seen in other words.
E.g. JSSIONID (JAVA EE), PHPSESSID (PHP), and ASPSESSIONID (Microsoft ASP).
.
😉 Even here session id... may think it's a ID code.
:
From now on when users click on what on the web page
Browser will be kind.
Secretly sending this session id to server automatically
Make the server recover from Alzheimer's.
... I remember where the request sent this... yay yay
.
So if the request sent in
It has the same session id
It's considered the same friends.
(Computer vocabulary says these request is in the same SESSION)
.
What if it's not the same session id
It's considered that request is not the same people.
:
👉 Benefits of session id
Will be used in conjunction with login / logout mechanism
1) When user name XXX comes in, there will be a session id.
2) When another user name YY does login, there will be a session id as a different ID.
3) When both users do logout, it will expire session id.
:
Question if we went to wash all the cookies in browser what would happen?
- answer for session id will be gone.
- So who secretly login is holding this web? What is that... huhu
- I have to logout automatically for new login... So sad. Haha.
(server doesn't remember us anymore
Because browser doesn't send session id)
:
Session id sounds like good
😨 but using user / password to login will have disadvantage such as
1) Easy to hacker to sneak in session
To wear sesion id (Cross-Site Request Forgery: CSRF)
... Technically, let's not talk about it. Read it on the
2) It is a burden for server to remember the session id. What rights you have and remember other information of user etc.
3) If you want to give the same user, login different devices such as
Web is fine. Mobile phone is good... It will be more difficult. (I have to copy session)
4) and other disadvantage not mentioned
:
😘 but he has a technique to solve the way.
.
Well, use what's called "acces token"
To get access token
I have to login with user / password to exchange it.
... We have to stand in the cat before we get access token.
Then we can use it instead of login
.
Keep us from feeding user / password often
And each user will get access token. Different look alike.
When it's time for user to do logout, access token will expire immediately.
:
😙 Here access token may compare like a key
Or maybe you can see it as a ticket or a pass... It's up to the imagination.
Difference from session id is
1) access token will not be kept in cookies
2) access token will collect information that can be revealed.
e.g. user _ id, rights, expiration date
(Not a burden for server to remember these information)
:
If you use access token with login mechanism, you will see the advantages like
1) Prevent hacker from using session by Cross-Site Request Forgery (CSRF)
2) Can login from mobile phone and just use the same user.
Just giving away access token... It's like Facebook.
(Not stored in browser cookies)
3) The server can leave a hassle login / logout duty... Throw it to authenticate service outside.
4) Server doesn't need to take care of user information.
:
😀 Cut back to see login mechanism with facebook user / password
The concept is as shown in the photo that I posted. (as an example of php)
Simple summary
- user time login
- It will sneak a switch to Facebook to do login instead.
- Then Facebook will throw back access token to our web
- Then user will use it as a pass. No need to login again.
:
There are many types of access token of Facebook such as
-User Access Token
- App Access Token
- Page Access Token
-Client Token
Each type has different rights. I can't ask for deep.
:
👉 session id and access token all this story
It's a sweet, fragrant hacker. I like it very much.
If they can steal, they can wear a login user.
Then hacker will get all rights like user... done here
.
Except we logout
To make session id or access token expire
Then the hacker will be out of bogs.
:
In the user corner. Just login.
Don't mind access token behind the scenes
But if it's a #programmer, you need to be extra mindful.
Because even four feet know that the philosopher knows.
The biggest giant. Big brother like Facebook.
Still missed it. Let access token out so that it's a big news.
.
👌 So, programming
Let's be mindful about access token. Don't fall off.
Be safe from hakcker to the best
Good luck to all of you.
:
:
Written by Thai programmer thai programmer
:
+++++++++++++
Reference
1) https://developers.facebook.com/docs/php/howto/example_facebook_login?locale=th_TH
2) https://developers.facebook.com/docs/facebook-login/access-tokens?locale=th_THTranslated
asp session 在 BorntoDev Youtube 的最讚貼文
Session เป็นพื้นฐานสำคัญสำหรับการสร้างเว็บแอพพลิเคชั่น สามารถประยุกต์ใช้งานได้หลากหลาย แถมใน ASP.NET ยังทำให้ใช้งานง่ายอีกด้วย ถ้าอยากรู้มาเรียนกันเลย :D
-------------------------------------------------------------------------------
กดติดตามช่องของ Youtube : https://www.youtube.com/user/sabyelife?sub_confirmation=1
Facebook : https://www.facebook.com/borntodev
Website : http://www.borntodev.com

asp session 在 吳老師教學部落格 Youtube 的精選貼文
TQC ASP 互動式網頁設計線上影音教學
課程名稱
00安裝IIS
00安裝ASP練習系統
00開啟練習檔與參考解答
00設定資料庫可讀寫的權限
00設定102流程
00其他相關設定
第一類 表單與Request 物件
101 星座個性
102 學生註冊系統 [完成]
103 教師授課日表查詢系統
104 電子賀卡選擇系統 [完成]
105 首頁產生器
106 電子郵件檢查 [完成]
107 會員資料查詢
108商品資料查詢
109 會員資料新增表單
110 線上益智測驗
第二類 Application、Session、、Server物件Cookies
201 網頁拜訪紀錄
202 寵物飼養
203 學習系統登錄
204 人氣手機票選
205 網路電子書問卷調查
206 聊天室
207 地理教學測驗系統
208 社群聊天室
209 學生作品評分系統
210 網路購物商店
第三類 資料庫應用與RecordSet物件
301 DVD影片新增系統
302 通訊錄資料刪除
303 房屋仲介資料更新
304 地震題庫測驗系統
305 學生基本資料分頁查詢系統
306 留言板製作
307 商店售價管理系統
308 股票行情表
309 世足賽票選活動
310 心情留言
第四類 結構化資料查詢語言
401產品資料查詢
402 通訊錄資料新增
403 書籍售價查詢系統
404 線上書籍查詢系統
405 親親旅遊管理系統
406 學生聯絡資料庫查詢系統
407 會員資料庫新增及刪除系統
408 教師資料庫新增及修改系統
409 薪資調整系統
410 線上購物系統

asp session 在 吳老師教學部落格 Youtube 的最讚貼文
ASP.NET 3.5程式設計第9次上課
這次上課主要是用實例解說ASP.NET提供的重要物件:
Cookie、Session、Applaction,也提到Response+Request+Server物件,
以上六個物件與ASP、JSP、PHP的使用是相同的,所以若能掌握以上六個物件,
對於未來處理其他網頁呈式有很大的幫助。
最後也補充非常重要的觀念,就是如何存取文字檔案,
我覺得這部分的重要性不會低於資料庫的存取,
以往一般人在學習成式的時候,都會以資料庫存取為目標,
但資料庫的存取對一般人來說,真的有點複雜,
光了解資料庫就很花時間,但相對文字檔非常簡易,
只要記事本就能產生。若是簡單資料,建議用文字檔即可,
例如計數器的總數,存在 Applaction 伺服氣重開機就消失,
存在資料庫又有點麻煩,若存成文字檔就非常適合。
但要如何讀寫文字檔呢?
1.宣告+引用FSO物件(其實他就是DLL檔)。
2.用FSO的OpenTextFile方法開啟文字檔。
3.讀取檔案內的文字到字串變數中。
4.變數+1
5.寫回去文字檔案。
6.記憶體中請除FSO物件。
以上是FSO物件的使用流程。課程影音:
01cookies新增&讀取
02coolie多鍵
03sessiond登入&登出
04Applaction物件計數器&Session
05將計算器改成圖檔
06用FSO開啟文字檔案
-------------------------------------------
01cookies新增&讀取
02coolie多鍵
03sessiond登入&登出
04Applaction物件計數器&Session
05將計算器改成圖檔
06用FSO開啟文字檔案
公告:
此影音課程謹提供本班學員復習用,非學校必須提供課程服務,
是老師私下提供,勿再向外傳送,若非學員請勿加入論壇,敬請悉知。
吳老師教學網:
http://3cc.cc/10g
部落格:
http://terry55wu.blogspot.com/
論壇:
http://groups.google.com/group/itctcaspnet?hl=zh-TW
YOUTUBE:
http://www.youtube.com/view_play_list?p=CB9790A2D1F998E3
ASP.NET 3.5,吳清輝老師,文化大學,推廣部,人力加值,程式設計,WEB2.0,線上教學

asp session 在 aspnet/AspNetSessionState: ASP.NET Session State ... - GitHub 的推薦與評價
ASP.NET Session State (not for ASP.NET Core). Contribute to aspnet/AspNetSessionState development by creating an account on GitHub. ... <看更多>
asp session 在 ASP.NET Session 值為空或是無法改變的問題 - 亂馬客 的推薦與評價
前言最近同事詢問,有一個系統,分別裝在不同的VM 上面,程式碼完全一樣,然而狀況卻是一個系統可正常登入,另一個則登入不進去。 ... <看更多>