Two-factor authentication on Pinterest

Pinterest Engineering
Pinterest Engineering Blog
3 min readJun 27, 2017

Emanuele Cesena & Amine Kamel | Pinterest engineers, Security

Pinterest is committed to protecting the accounts of Pinners around the world. With an ever-growing user base of more than 175 million people, today we’re announcing that two-factor authentication (2FA) will be rolling out over the coming weeks as an additional layer of security. Here we’ll share how we implemented two-factor authentication on Pinterest.

How 2FA works

Enabling two-factor authentication means you confirm your identity with a combination of two factors each time you log in. In general, the first factor is a password, and the second is through a trusted device like a smartphone. We leverage Twilio’s Authy to provide different methods of verification, including push notifications and SMS messages.

Authentication options

Pinterest supports login with an email address, Facebook or Google across Android, iOS and web. If you enable 2FA, you’ll receive a seven digit verification code every time you log in.

By default, we’ll send the verification code via SMS. If you’re an Authy user, we’ll send you a push notification through Authy instead of SMS. Also, the Authy mobile app works as an offline time-based code, so you can use it even without network connectivity.

Architecture

Let’s dive deeper into the architecture, and see how things happen behind the curtains.

There are three main architectural components:

  1. Pinterest API, which is the point of contact for web and mobile apps.
  2. User service, which stores data.
  3. Authy, the third party provider we use to generate, send and verify 2FA codes.

Here’s how the enable flow works:

  1. User verifies their password
  2. User inputs their phone number
  3. API sends phone number to Authy, receives Authy ID for future reference
  4. API requests an SMS to Authy (or push notification, Authy handles that transparently)
  5. Authy sends a verification code to user’s phone. Optionally, user can request another code (this time, we require sending an SMS)
  6. User sends verification code
  7. API forwards the verification code to Authy
  8. If verification code is correct, API enables 2FA and generates a backup code
  9. API stores phone number, 2FA enabled and backup code in User service, and returns to user

Note that user’s phone number is only saved after it’s verified.

When 2FA is enabled, the login flow is slightly modified to send the user a verification code, in a similar fashion as during the enable flow above.

This update will start rolling out to Pinners over the coming weeks. To opt-in when it’s available to you, visit the security section of your account settings on web and click the button to enable two-factor authentication.

Acknowledgements: 2FA has been a cross team effort. Many thanks to Devin Lundberg, Flavius Popescu, Juan Vasconez, Joseph Zingarelli, Jean Aurambault, and the design, core experience, android, iOS and web teams for all their help and guidance.

--

--