Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
coreBOS Webservice Library for AngularJS : sample code
#1
Hi,

does anyone have a test code of how the library works

the github page have only the login page.

rgds
Reply
#2
Have you seen and tried this project:

https://github.com/tsolucio/coreBOSWebserviceJS
Joe
TSolucio
Reply
#3
Oups. no,

Thanks
Reply
#4
Keep asking :-)

We have a lot of things done for this, we have been programming down this path for some time now: really impressive
Joe
TSolucio
Reply
#5
i have successfully installed both corebos and the angular, i got now :

coreBOS API Keys seem to be invalid as we are receiving a Not Authorized error response
{"success":false,"error":{"code":"AUTHENTICATION_REQUIRED","message":"Given user cannot be found"}}

what i missed?

the url , login and access key are all good
Reply
#6
it is most probably the CORS configuration. For javascript to securely access a webservice API you have to give access to the javascript domain in the server hosting the webservice.
This can be done at the apache/server configuration level or at the application level.

coreBOS has support for CORS by configuring the config variable CORS Domains, which should be in your config.inc.php file and editable from the Settings Configuration section.

Read a little about CORS, try adding your domain to the configuration and let us know how it goes.
Joe
TSolucio
Reply
#7
Exactly,

i have added this under conf.d/cors.conf :


Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Methods "POST, GET, OPTIONS, DELETE, PUT"
Header set Access-Control-Max-Age "1000"
Header set Access-Control-Allow-Headers "x-requested-with, Content-Type, origin, authorization, accept, client-security-token"

# Added a rewrite to respond with a 200 SUCCESS on every OPTIONS request
RewriteEngine On
RewriteCond %{REQUEST_METHOD} OPTIONS
RewriteRule ^(.*)$ $1 [R=200,L]
Reply
#8
Hi,
i did not see that in config.inc.php there is the cors domains configuration :

// List of CORS Authorized Domains for Webservices
$cors_enabled_domains = '*';

rgds
Reply
#9
Both solutions should work correctly. Native coreBOS support is good for those people who don't have access/knowledge to modify their web server configuration, but in the end it is the same.
Joe
TSolucio
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)