Search found 13 matches

Go to advanced search

by ribasman
Fri Oct 07, 2022 10:32 pm
Forum: Developing
Topic: Infos/User response = 403 forbidden
Replies: 4
Views: 3044

Re: Infos/User response = 403 forbidden

Figure it out already. Missing api-key header of course. queryUrl = "https://api.opensubtitles.com/api/v1/infos/user" Dim wClient1 As New WebClient wClient1.Headers("ContentType") = "application/json" wClient1.Headers("Authorization") = String.Format("Bea...
by ribasman
Fri Oct 07, 2022 10:15 pm
Forum: Developing
Topic: Infos/User response = 403 forbidden
Replies: 4
Views: 3044

Re: Infos/User response = 403 forbidden

persists in error 403. queryUrl = "https://api.opensubtitles.com/api/v1/infos/user" Dim wClient1 As New WebClient wClient1.Headers("Accept") = "*/*" wClient1.Headers("ContentType") = "application/json" wClient1.Headers("Authorization") = St...
by ribasman
Wed Oct 05, 2022 12:45 am
Forum: Developing
Topic: Infos/User response = 403 forbidden
Replies: 4
Views: 3044

Infos/User response = 403 forbidden

Hi, Start migrating to the new API and everything runs smoothly except for the GET method in infos/user After Login (which i get a token) immediately i'm trying without success to get the remaining_downloads integer. A key part in my app code: The remote server returned an error: (403) Forbidden Btw...
by ribasman
Sun Feb 09, 2020 12:59 am
Forum: Developing
Topic: The request was aborted: Could not create SSL/TLS secure channel
Replies: 7
Views: 5581

Re: The request was aborted: Could not create SSL/TLS secure channel

Not using Curl. Never did. Always use HttpWebRequest in .Net Here's some code: Dim postString As String = "https://rest.opensubtitles.org/search..." Dim postReq As HttpWebRequest = DirectCast(WebRequest.Create(postString), HttpWebRequest) With postReq .Method = "POST" .KeepAlive ...
by ribasman
Sat Feb 08, 2020 9:20 am
Forum: Developing
Topic: The request was aborted: Could not create SSL/TLS secure channel
Replies: 7
Views: 5581

Re: The request was aborted: Could not create SSL/TLS secure channel

Problem pointed out still remains. Can't use 'https' in my request.
Luckly http works.
by ribasman
Tue Feb 04, 2020 7:15 pm
Forum: Developing
Topic: The request was aborted: Could not create SSL/TLS secure channel
Replies: 7
Views: 5581

Re: The request was aborted: Could not create SSL/TLS secure channel

Just an example https://rest.opensubtitles.org/search/moviebytesize-1903525053/moviehash-8b77fa2ee6de7975/sublanguageid-por But your question striked me that might the secure layer protocol in the http(s) be the culprit and it was, but still a rather strange since yours examples uses the https proto...
by ribasman
Tue Feb 04, 2020 11:13 am
Forum: Developing
Topic: The request was aborted: Could not create SSL/TLS secure channel
Replies: 7
Views: 5581

The request was aborted: Could not create SSL/TLS secure channel

Hi,

Getting into this certificate error message and i believe it has to be with your server.
What can i do to solve this, please.

Best regards
Nuno Ribeiro
by ribasman
Thu Mar 29, 2018 9:38 am
Forum: Developing
Topic: REST API can't make it work
Replies: 5
Views: 5903

Re: REST API can't make it work

XMLRPC seems to be solved. I'v this code running for years and the header didn't include the 's' mark on the http protocol.
But still no idea to make REST works.
by ribasman
Wed Mar 28, 2018 9:40 am
Forum: Developing
Topic: REST API can't make it work
Replies: 5
Views: 5903

Re: REST API can't make it work

Hi, Still can´t make any API to work but now get response on XMLRPC: "<?xml version=""1.0"" encoding=""utf-8""?><methodResponse><params><param><value><struct><member><name>status</name><value><string>200 OK</string></value></member><member><name>data</nam...
by ribasman
Tue Mar 27, 2018 10:08 am
Forum: Developing
Topic: REST API can't make it work
Replies: 5
Views: 5903

REST API can't make it work

Hi there, spent all morning trying to implement REST API to my app, since XMLRPC no longer seems to work for me either, but can't get a fix on the http request:"http useragent is not valid". I'm a registered user agent for a long time and never had rejected requests. Useragent: ribasman Pl...
by ribasman
Mon Dec 17, 2012 11:50 pm
Forum: Developing
Topic: SearchMoviesOnIMDB is it working?
Replies: 2
Views: 3668

Re: SearchMoviesOnIMDB is it working?

Right. Thanks for the explanation.
by ribasman
Sun Dec 16, 2012 1:14 pm
Forum: Developing
Topic: SearchMoviesOnIMDB is it working?
Replies: 2
Views: 3668

SearchMoviesOnIMDB is it working?

Hi everybody,

The subject os this post is self explaining.
Since a few days ago i don't get any results on finding IMDB id movies. unless a few of them with a large string of 10 digits, but of course no matching to imdb.com id movie.
Can you help one this one please?
by ribasman
Fri Dec 23, 2011 1:18 pm
Forum: Developing
Topic: Development of opensubtitles XML-RPC in C# (.NET)
Replies: 12
Views: 20356

Re: Development of opensubtitles XML-RPC in C# (.NET)

I don't know if the author of this post is still active, or the current status of his project. I just can say that I have an opensource project started on GitHub for OpenSubtitles in .net. Here is my link https://github.com/kappy/OSDB.net Hi kappy, i'm trying to do on VB what you could on C#, but k...

Go to advanced search