Is there a Salesforce endpoint to logout a session (not involving oauth?).
For example, I have a python script that logged in via the REST API using the username, password, security token method (I am using simple_salesforce for this). simple_salesforce does not provide an inbuilt way to logout. Instead, according to the developer, logging out should be our responsibility: https://github.com/heroku/simple-salesforce/issues/35
In the url above, it recommends we hit the salesforce revoke endpoint as described here: https://help.salesforce.com/HTViewHelpDoc?id=remoteaccess_revoke_token.htm&language=en_US
However, as I mentioned before, I used the username, password, security token method to login, not the oauth. Assuming, I cannot use the oauth way to login, what url/endpoint do I need to hit to logout the session?
Thanks!