Edward Lee
unread,Apr 27, 2010, 9:20:45 PM4/27/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Identity Group
It would be useful to have the server provide a token so that it can
be sent back for actions like "logout". In particular, Wordpress'
logout requests includes a wpnonce to prevent unintended logouts.
In addition to providing the status and name, it could give a token, e.g.,
X-Account-Management-Status: active; name="Edward Lee"; token=abcd1234
And add token as a valid field for actions, e.g.,
"disconnect": {
"method": "GET",
"path": "wp-login.php?action=logout"
"params": {
"token": "wpnonce"
}
}
Ed