Hey guys
I've recently made an ant movie catalog script that scrapes a rotten tomatoes movie via it's URL (e.g http://www.rottentomatoes.com/m/1009293-hawaii/) and adds info to some custom fields I have created within my AMC database.
All has been working well so far, but recently it looks like rotten tomatoes site has gone all SSL. Now the script no longer works and throws an error:
"io handler is not valid"
I'm guessing the GetPage function is now broken?
s := GetCustomField('RTURL');
page := GetPage(s);
Any ideas how I can get around this?
Thanks!
Working on a rotten tomatoes script... Now broke due to SSL?
A quick search on the forum appears to answer my question
viewtopic.php?t=5995
I know nothing about coding per se but would love to see https support added to this great program of yours. Is there anything I do to contribute?
viewtopic.php?t=5995
How sad! I put a quite a few hours into making my script and had planned to put it on here soon as it's been working well.Visit poster's website AMC does not support HTTPS currently (except if soulsnake added it and I'm not aware of it?)
I know nothing about coding per se but would love to see https support added to this great program of yours. Is there anything I do to contribute?
Script definitley halts at the get page line.
E.g
Any assistance would be great appreciated!
Assuming this is fixable antp / soulsnake, how would I go about publishing my script? It works well, but is not really useable "out of the box" so to speak as it relies on a number of custom fields I created to import the information into the database.
E.g
Code: Select all
page := GetPage('https://www.rottentomatoes.com/m/1009293-hawaii/');
Assuming this is fixable antp / soulsnake, how would I go about publishing my script? It works well, but is not really useable "out of the box" so to speak as it relies on a number of custom fields I created to import the information into the database.
This is very strange.
page := GetPage('https://www.rottentomatoes.com/') throws the same error
however a few other different sites do not
e.g
page := GetPage('https://www.ebay.com/');
page := GetPage('https://www.paypal.com/');
page := GetPage('https://www.facebook.com/');
It appears that https://www.rottentomatoes.com is rejecting the new OpenSSL feature. I wonder why that is?
page := GetPage('https://www.rottentomatoes.com/') throws the same error
however a few other different sites do not
e.g
page := GetPage('https://www.ebay.com/');
page := GetPage('https://www.paypal.com/');
page := GetPage('https://www.facebook.com/');
It appears that https://www.rottentomatoes.com is rejecting the new OpenSSL feature. I wonder why that is?