Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want to call API using Phalcon Php framework.
example:
http://example.com?key=abc
Phalcon has no internally build way to ask other services.
You can use either client built in incubator project:
https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Http/Client
or a standard connection class as Guzzle, or native php curl methods.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
working in a vehicle protection association and I need to identify which of our associates are uber drivers, is this possible to be done using the api?
Taking a look at the documentation, there are only these endpoints https://developer.uber.com/docs/drivers/references/api#endpoints.
And I think none of them solves the problem.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
I am using moodle version 3.2 . I have to use moodle API in C# . Is it possible to trigger the API? . Please suggest your solution.
You probably want to use web services for this.
The best starting point for this is: https://docs.moodle.org/32/en/Web_services
That page has links off to more detailed documentation.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am trying to display the resources and associated subresources of a restful API I am working with (https://api.lendingclub.com/api/investor//). If resources aren't documented, is there any way to find them?
There presently is not a standard way to discover restful API operations like there is with WSDL based soap web services.
Documentation from the API provider is the best way to learn.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
Is there an example how to use a callback in flyway 3.2 that works using maven? The afterMigrate method supplies a SQL connection object but it is closed?
My desire is to use this to create stored procedures from a collection of files in source control.
You can use SQL-based callbacks by simply creating a sql file with the name of the callback: http://flywaydb.org/documentation/callbacks.html
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I am new in gwt.I want to create a login application using google web tool kit.Thanks in advance.
Google provides a short tutorial which describes how to create a login page with user/password authentication and storing the data in a server-side secure fashion: google-web-toolkit-incubator Login Security FAQ