Search found 220 matches

by SparrowhawkMMU
Tue Oct 24, 2017 8:18 am
Forum: Coding Questions
Topic: SB and HTTPRequest
Replies: 3
Views: 2064

Re: SB and HTTPRequest

Hi Karu, At the server end, you need to send an allow origin header. for example, in PHP, you need to include this with your response: header('Access-Control-Allow-Origin: *'); The * means any origin, ie any client anywhere - you can filter it to specific IP addresses if these are known and fixed. F...
by SparrowhawkMMU
Mon Oct 23, 2017 11:23 am
Forum: Coding Questions
Topic: [Solved]. Can comebody test the Http methods with 2.20?
Replies: 2
Views: 1764

Re: Can comebody test the Http methods with 2.20?

Update: The SB PUT, PATCH and DELETE do not appear to be sent correctly - they are not appearing in PHP's $_SERVER['QUERY_STRING'] super global. However, when I call the API using my API test tool using PUT, PATCH or DELETE, the APi is picking up the value correctly. Here is an example of a request ...
by SparrowhawkMMU
Mon Oct 23, 2017 10:57 am
Forum: Coding Questions
Topic: [Solved]. Can comebody test the Http methods with 2.20?
Replies: 2
Views: 1764

[Solved]. Can comebody test the Http methods with 2.20?

SpiderBasic 2.20 is reporting success = #False on API calls. However, my API logs say that SB correctly hit the API endpoints with the correct data and that they were processed correctly and the correct response sent back to the Sb generated webpage. When I use my Http test tools to call the APIs di...
by SparrowhawkMMU
Thu Oct 19, 2017 2:16 pm
Forum: General Discussion
Topic: SpiderBasic 2.20 final is out !
Replies: 25
Views: 20277

Re: SpiderBasic 2.20 beta 2 is available !

@fred, I realise that this was not in the original wishlist post, but if it's not complicated to do, would you mind adding the following HTTP methods for completeness: HEAD OPTIONS TRACE And I wondered whether you were working on adding the ability to access response headers , as we have the ability...
by SparrowhawkMMU
Wed Oct 11, 2017 3:43 pm
Forum: General Discussion
Topic: SpiderBasic 2.20 final is out !
Replies: 25
Views: 20277

Re: SpiderBasic 2.20 beta 1 is available !

Local SQLite & HTTP verbs.... THANK YOU! :) :) :)

Update: I'll test this over the weekend.

PS - should this not be in the Announcements section rather than Topics?
by SparrowhawkMMU
Thu Sep 28, 2017 5:06 pm
Forum: General Discussion
Topic: Museum is up !
Replies: 10
Views: 16405

Re: Museum is up !

@Fred - thanks for the clarification. Again, your generosity is much appreciated :)
by SparrowhawkMMU
Wed Sep 27, 2017 2:14 pm
Forum: General Discussion
Topic: Museum is up !
Replies: 10
Views: 16405

Re: Museum is up !

Useful, thanks.

By the way, does your offer of free lifetime updates for early adopters still stand?
by SparrowhawkMMU
Wed Sep 27, 2017 2:09 pm
Forum: Feature Requests and Wishlists
Topic: InsertJSONStructure: booleans
Replies: 9
Views: 5231

Re: InsertJSONStructure: booleans

Thanks for trying Fred. I did suspect that it would be tricky to implement. I appreciate you taking a look.

OK for now I'll just keep using manual JSON construction.
by SparrowhawkMMU
Fri Aug 18, 2017 8:24 pm
Forum: Coding Questions
Topic: HTTPRequest PUT and DELETE
Replies: 5
Views: 2592

Re: HTTPRequest PUT and DELETE

Thank you Fred! :)
by SparrowhawkMMU
Wed Aug 16, 2017 9:06 pm
Forum: Coding Questions
Topic: HTTPRequest PUT and DELETE
Replies: 5
Views: 2592

Re: HTTPRequest PUT and DELETE

Not yet, no. It's been requested several times, (along with PATCH).

I'm in the same boat as you. I have an API begging for an admin UI, but can't use SpiderBasic to write it as its RESTful.