REST Authentication is OAuth2 ,not Basic access authentication | Community
Skip to main content
January 14, 2015
Question

REST Authentication is OAuth2 ,not Basic access authentication

  • January 14, 2015
  • 4 replies
  • 1395 views
Hi all
 
I found "basic access authentication" in REST API documents.
I think "basic access authentication" => "OAuth2"

wikipedia - basic access authentication
http://en.wikipedia.org/wiki/Basic_access_authentication

See below.
http://developers.marketo.com/documentation/rest/

Marketo REST APIs

Page Last Updated: November 2014
Authentication: Basic Access Authentication


http://developers.marketo.com/documentation/rest/authentication/

Authentication

Page Last Updated: December 2014

Marketo's REST APIs uses basic access authentication.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

4 replies

January 14, 2015
It is a modified version of OAuth2. I heard some feedback that it was confusing, so I wrote Basic Access Auth. It's a modified version of Bassic Access Auth as well. So I can see why it is still confusing. 
January 14, 2015
Hi Murtza,

I think it is confusing. I've written an app recently and spent a lot of time trying to work out why the OAuth2 wasn't working, only to realise that it's really just basic authentication.

Maybe documentation needs updating, and mentions of OAuth2 need removing?
January 14, 2015
@Brody, all mentions of OAuth2 are gone. I agree it can be made clearer. I think rather than saying it is either Basic Auth or OAuth2. I will just describe the custom auth we currently have. 
January 15, 2015
@Murtza

I began Marketo REST programming from last month.
My confusing step.
1. I read "Quick Start Guide for Marketo REST API".
http://developers.marketo.com/blog/quick-start-guide-for-marketo-rest-api/
2. I found a word "OAuth" in this image.

3. Traditional basic auth do not need Token. I thought this authentication is OAuth1.
4. Next, I refferd API reference "Authentication" chapter.
http://developers.marketo.com/documentation/rest/authentication/
5. Request and Response format is not OAuth1 and is similler to OAuth2.
I assumed OAuth2.

Takehiro