1

I am trying to implement Surf OAuth as third party key manager in WSO2 API Manager. https://docs.wso2.com/display/AM1100/Configuring+a+Third-Party+Key+Manager

But after deploying it to tomcat, none of the buttons work, they return nothing. In Chrome developer tools, source option I have seen that it misses one of the template folder. Kindly see the image,

Surf OAuth Image

How do I make it work? Thanks

Abimaran Kugathasan
  • 31,165
  • 11
  • 75
  • 105
John Seen
  • 701
  • 4
  • 15
  • 31

1 Answers1

1

You can check the latest source code for Surf Oauth Server from here. It seems the Surf Oauth WAR has customization. You don't need to depend on the Surf OAuth Server provided in the documentation.

You can clone the source code from above github repo and build it. You can start the Surf Oauth Server in following way. It's a Jetty project.

cd apis-authorization-server-war
mvn jetty:run 
Abimaran Kugathasan
  • 31,165
  • 11
  • 75
  • 105
  • Thanks Abimaran, I tried what you have said, but it also does not work. The war deploys but doesn't start at all. If possible can you provide me a working .war? – John Seen Apr 12 '16 at 10:58