Problem I’m currently creating an OAuth provider in Java using Jersey. To the best of my knowledge Jersey does not […]
Tag: oauth
Auth token SSL implementation
Problem <?php define(‘AES_256_CBC’, ‘aes-256-cbc’); // both stored in a file on server $encryption_key = openssl_random_pseudo_bytes(32); $iv = openssl_random_pseudo_bytes(openssl_cipher_iv_length(AES_256_CBC)); $user_id = […]
Rails service + OAuth
Problem I’m having trouble structuring the logic of OAuth integration into my web app. In the app, a user creates […]