Search found 222 matches

by pink
Thu Feb 20, 2025 5:08 am
Forum: Internet
Topic: tsneterr: (28) Operation too slow
Replies: 2
Views: 5289

Re: tsneterr: (28) Operation too slow

Turned out to be something else entirely (didn't like my SMTP settings on the backend)
by pink
Mon Feb 17, 2025 11:22 pm
Forum: Internet
Topic: tsneterr: (28) Operation too slow
Replies: 2
Views: 5289

tsneterr: (28) Operation too slow

I am using the API maker "Twidget" I am having one problem with one specific endpoint: "forgot-password" tData is just a JSON with an email address: {"email":"123@abc.com"} tHeader is "Content-type: application/json" tURL is https://somesecretcodehere.twidget.io/auth/forgot-password I am using the f...
by pink
Mon Jul 29, 2024 1:52 am
Forum: Talking LiveCode
Topic: PolyList and Image data
Replies: 6
Views: 8437

Re: PolyList and Image data

thanks Bernd, I wouldn't have thought of that

Also, just so it is listed somewhere, the size of the item/column/row DOES NOT have to be the same as the image being put into it.

The content fit of the item (fill, cover, or contain) will fit the image regardless of the size of the original.
by pink
Sun Jul 28, 2024 9:18 pm
Forum: Talking LiveCode
Topic: PolyList and Image data
Replies: 6
Views: 8437

Re: PolyList and Image data

also trying to fool around with the PolyGrid with the same results
by pink
Sun Jul 28, 2024 9:07 pm
Forum: Talking LiveCode
Topic: PolyList and Image data
Replies: 6
Views: 8437

Re: PolyList and Image data

So I added 128x128 images to the stack, and set the size of the item (Columns tab) to 128x128, and the item height of the item to 128 and the width of the column to 128.

Still no luck.
by pink
Sun Jul 28, 2024 5:41 pm
Forum: Talking LiveCode
Topic: PolyList and Image data
Replies: 6
Views: 8437

PolyList and Image data

I am trying to use the PolyList widget, however I cannot get the image-data to display. This is very simple setup... I have a PolyList that only has the item "image" which is set to the content type of "image-data". There are 2 images in the card that I am testing with. I have the following button s...
by pink
Sun Jun 16, 2024 12:59 pm
Forum: Internet
Topic: Delete URL with data (and Patch)
Replies: 3
Views: 16413

Re: Delete URL with data (and Patch)

The command I've been trying to play with is tsNetCustomUploadSync put "APIkey: " & pAPIkey & cr into tHeader put "Content-Type: application/json" after tHeader set the httpHeaders to tHeader put tsNetCustomUploadSync(tTableURL, "DELETE", tHeader, tJSON, rOutHeaders, rResult, rBytes) into tResult I ...
by pink
Fri Jun 14, 2024 5:46 pm
Forum: Internet
Topic: Delete URL with data (and Patch)
Replies: 3
Views: 16413

Delete URL with data (and Patch)

For an API I am working with, data needs to be sent with the delete command. I've been running rumming through documentation and can't seem to find my help. See below as an example. curl --request DELETE 'https://api.tabluar.io/v1/public/tabular/xyzzy/data' \ --header 'ApiKey: <YourAPIKey>' \ --head...
by pink
Mon Mar 04, 2024 10:23 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: tsneterr: (35) SSL peer handshake failed
Replies: 7
Views: 3510

Re: tsneterr: (35) SSL peer handshake failed

Went through all of my extensions and plugins. It looks as though the problem was the PowerDebug plugin. Honestly forgot it was in there.

I am finally up and running.

Thanks again Klaus and Bernd
by pink
Mon Mar 04, 2024 8:07 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: tsneterr: (35) SSL peer handshake failed
Replies: 7
Views: 3510

Re: tsneterr: (35) SSL peer handshake failed

One possible final weird note about this. Still, on my Mac(s) the API calls do not work in Livecode. However, if I save as a standalone on the same Macs, the API call DOES work. So Windows works, curl works, standalone on Windows and Mac work. The only place where I am getting the tsnet error is in ...
by pink
Fri Mar 01, 2024 10:04 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: tsneterr: (35) SSL peer handshake failed
Replies: 7
Views: 3510

Re: tsneterr: (35) SSL peer handshake failed

So there is one more wrinkle in this issue, it only occurs on the MacOS.

This error gets thrown on both M1 and Intel Macs (Sonoma 14.3.1), but I get the expected return using Windows.

Before I try and open a ticket, any idea as to why this might be and what could be done?
by pink
Tue Feb 27, 2024 5:11 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: tsneterr: (35) SSL peer handshake failed
Replies: 7
Views: 3510

Re: tsneterr: (35) SSL peer handshake failed

is there a way around using the tsNet library, or is that the only option built-in?
by pink
Sat Feb 24, 2024 4:44 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: tsneterr: (35) SSL peer handshake failed
Replies: 7
Views: 3510

tsneterr: (35) SSL peer handshake failed

I'm tinkering around with the API for Retable and I am running into this error: tsneterr: (35) SSL peer handshake failed, the server most likely requires a client certificate to connect essentially, I’m running the equivalent of (which works fine): curl --request GET 'https://api.retable.io/v1/publi...
by pink
Fri Jan 12, 2024 5:48 pm
Forum: Talking LiveCode
Topic: Problem with a REST API Call
Replies: 6
Views: 96052

Re: Problem with a REST API Call

htmlHeaders was a typo when I wrote this post, it was httpHeaders in my script.

Changing CRLF to LF did the trick.

Thanks everyone for helping push me in the right direction.