Generic values for Oauth 2 configuration
authorDavid A. Velasco <dvelasco@solidgear.es>
Fri, 3 May 2013 11:30:35 +0000 (13:30 +0200)
committerDavid A. Velasco <dvelasco@solidgear.es>
Fri, 3 May 2013 11:30:35 +0000 (13:30 +0200)
res/values/oauth2_configuration.xml

index e56f225..5fbef7c 100644 (file)
     <string name="oauth2_redirect_uri">owncloud://callback</string>
     
     <!-- values that should be provided by ownCloud server -->
-    <string name="oauth2_url_endpoint_auth">http://owncloud.tuxed.net/oauth/php-oauth/authorize.php</string>
-    <string name="oauth2_url_endpoint_access">http://owncloud.tuxed.net/oauth/php-oauth/token.php</string>
+    <string name="oauth2_url_endpoint_auth">http://oauth2.authorization.server.org/paht/to/endpoint/for/authorization</string>
+    <string name="oauth2_url_endpoint_access">http://oauth2.authorization.server.org/paht/to/endporint/for/access/token</string>
     <string name="oauth2_scope">owncloud</string>
     <string name="oauth2_grant_type">authorization_code</string>       <!-- the only one supported right now -->
     <string name="oauth2_response_type">code</string>                          <!-- depends on oauth2_grant_type -->
     
-    <!-- values that should be agreed between app and authorization server, but can be loaded without rebuilding the app -->
+    <!-- values that should be pre-agreed between app and authorization server, but can be loaded without rebuilding the app -->
     <string name="oauth2_client_id">com.owncloud.android</string>      <!-- preferable that client decides this -->
     <string name="oauth2_client_secret"></string>                                      <!-- preferable that client decides this -->