Skip to content

Commit c9b9865

Browse files
committed
Revert "Fixing failing test from disabling oauth1."
This reverts commit a4ef4db.
1 parent cbdd8c9 commit c9b9865

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Release/include/cpprest/http_client.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,9 @@ class http_client_config
118118
/// <returns>Shared pointer to OAuth 1.0 configuration.</returns>
119119
const std::shared_ptr<oauth1::experimental::oauth1_config> oauth1() const
120120
{
121-
return m_oauth1;
121+
// CodePlex #230
122+
throw std::runtime_error("oauth1 is not implemented yet.");
123+
//return m_oauth1;
122124
}
123125

124126
/// <summary>

0 commit comments

Comments
 (0)