just remove s from https

URL url = new URL("http://jsonmock.hackerrank.com/api/article_users?page=1");

Answer from abhinavsinghvirsen on Stack Overflow
๐ŸŒ
GitHub
github.com โ€บ devreena03 โ€บ hackerrank-restapi-java
GitHub - devreena03/hackerrank-restapi-java: Hackerrank REST API certification problem solved in java ยท GitHub
Hackerrank REST API certification problem solved in java - devreena03/hackerrank-restapi-java
Starred by 19 users
Forked by 12 users
Languages ย  Java
๐ŸŒ
HackerRank
hackerrank.com โ€บ skills-verification โ€บ rest_api_intermediate
Rest API Intermediate Certificate
Data structures are fundamental to software design, and the certification rigorously tests candidates' understanding of arrays, linked lists, stacks, queues, trees, and graphs. Proficiency in MySQL, a critical aspect of database management, is evaluated through database design, SQL queries, normalization, and optimization techniques. Additionally, expertise in REST APIs, vital for modern web applications, is assessed in terms of RESTful principles, HTTP methods, authentication, and API design best practices.
Discussions

json - Calling Rest API in java from Hackerrank IDE - Stack Overflow
It may be the case that Hackerrank does not let Java code make outbound network requests. Similar questions here and here suggest that you may need to choose a different language that Hackerrank supports. More on stackoverflow.com
๐ŸŒ stackoverflow.com
HackerRank Solving rest APIs with Algos
A message I wrote to someone who came across this post asking for help. I hope this is useful for anyone else who comes across this: I am so sorry I was not able to reply in a timely manner. I am hardly on here. If this is still relevant to you, I would recommend studying for and getting this certificate. It's pretty easy and entails that you know how to consume an API and parse it and use its data. There are free intermediate and advanced certificates from Hackerrank. It doesn't really mean anything as far as the industry is concerned but preparing for it will help prepare you for future REST API Hackerranks and it's a nice little filler certificate to put on LinkedIn. https://www.hackerrank.com/skills-directory/rest_api_intermediate This is a video I used to help prepare. https://newsapi.org/ In general, I'd recommend finding an open API and play around with it using your language of choice. Off the top of my head, https://newsapi.org/ is a free one you can use. I hope this helps. More on reddit.com
๐ŸŒ r/csMajors
2
3
March 9, 2022
What Library to use for HackerRank Rest API Skills Challenge?
Update (in case anyone else has the question): environment details and list of dependencies on the class path. More on reddit.com
๐ŸŒ r/cscareerquestions
3
3
October 21, 2020
Practice REST API for an interview test
I think the best way for it is creating an API with REST architecture. More on reddit.com
๐ŸŒ r/learnprogramming
3
4
October 16, 2024
๐ŸŒ
GitHub
github.com โ€บ TarasAntoniuk โ€บ hackerrank-prep-rest-api
GitHub - TarasAntoniuk/hackerrank-prep-rest-api: HackerRank problem solving for REST API certification ยท GitHub
This repository contains solutions to multiple tasks from the HackerRank REST API Certification (Intermediate Level). All tasks are implemented in Java 21 using Spring Boot within a single package, each task exposed via a different REST endpoint.
Author ย  TarasAntoniuk
๐ŸŒ
GitHub
github.com โ€บ kaarthikraajan โ€บ rest-api-hackerrank
GitHub - kaarthikraajan/rest-api-hackerrank: This is a solution to the problem presented in the hackerrank problem.
This is a solution to the problem presented in the hackerrank problem. - kaarthikraajan/rest-api-hackerrank
Starred by 6 users
Forked by 2 users
Languages ย  Java 100.0% | Java 100.0%
๐ŸŒ
HackerRank
hackerrank.com โ€บ skills-directory โ€บ rest_api_intermediate
REST API (Intermediate) | Skills Directory | HackerRank
A RESTful API makes it possible for remote execution of an application's capabilities by supporting standard HTTP methods, error handling, and other RESTful mechanisms.
Find elsewhere
๐ŸŒ
GitHub
github.com โ€บ sumantopal07 โ€บ Rest-API-Intermediate-Hackerrank-Test
GitHub - sumantopal07/Rest-API-Intermediate-Hackerrank-Test ยท GitHub
Solution : Only done with 10 GET requests by taking advantage of the constraint of maximum of 10 goals scored by any team. const fetch = require("node-fetch"); let goals=[]; for(let i=0;i<=10;i++) goals.push(i); let ans=0; async function ...
Starred by 37 users
Forked by 8 users
๐ŸŒ
HackerRank
hackerrank.com โ€บ work โ€บ apidocs
HackerRank for Work API
The HackerRank for Work API is organized around REST. Our API has predictable, resource-oriented URLs, and uses HTTP response codes to indicate API errors. We use built-in HTTP features, like HTTP authentication and HTTP verbs, which are understood by off-the-shelf HTTP clients.
๐ŸŒ
HackerRank
hackerrank.com โ€บ skills-verification โ€บ rest_api_intermediate โ€บ md1hiktjtk
Rest API (Intermediate) Skills Certification Test
Join over 28 million developers in solving code challenges on HackerRank, one of the best ways to prepare for programming interviews.
๐ŸŒ
Gitbook
dailyjournal.gitbook.io โ€บ solutions โ€บ hackerrank-solutions โ€บ certify โ€บ rest-api-intermediate
Rest API (Intermediate) | HackerRank | Solutions
In this challenge, the REST API contains information about football matches. The provided API allows querying matches by teams and year. The task is to get the number of matches for a given year that ended in a draw. A match is drawn when both teams scored the same number of goals. To access a collection of matches played in a given year, perform an HTTP GET request to https://jsonmock.hackerrank.com/api/football_matches?year=<year>&page=<page> where <year> is the year of the competition and <page> is the page of the results to request.
๐ŸŒ
Reddit
reddit.com โ€บ r/csmajors โ€บ hackerrank solving rest apis with algos
r/csMajors on Reddit: HackerRank Solving rest APIs with Algos
March 9, 2022 -

Hey ya'll,

I just received an OA for an internship and I will be tested on the following.

  • Coding - You can use whichever programming language you'd like!

  • Databases - You'll use database queries and SQL for this one. 

  • Rest API's - You'll be solving Rest API's using algos!

I more or less understand what's expected of me from the coding and database section. I'm not sure what to expect from the Rest API section. When I go to the HackerRank website I don't see any practice tests or resources for this topic. This is something I have minimal experience with and I'm not sure how to practice. Any resources or insights would be greatly appreciated. Thank you!

๐ŸŒ
HackerRank
hackerrank.com โ€บ api
Programming Problems and Competitions :: HackerRank
Code your solution in our custom editor or code in your own environment and upload your solution as a file.4 of 6
๐ŸŒ
YouTube
youtube.com โ€บ playlist
HackerRank Skill Certification Test Solutions - YouTube
This playlist contains solutions of hacker rank Skill Certification. It has solution of various certifications which includes problem solving, java, and python.
๐ŸŒ
Scribd
scribd.com โ€บ document โ€บ 781361192 โ€บ HackerRank-Rest-api-intermediate-Certificate
HackerRank - Rest - Api - Intermediate Certificate | PDF
*HackerRank - Rest_api_intermediate Certificate - Free download as PDF File (.pdf) or view presentation slides online.
๐ŸŒ
Reddit
reddit.com โ€บ r/cscareerquestions โ€บ what library to use for hackerrank rest api skills challenge?
r/cscareerquestions on Reddit: What Library to use for HackerRank Rest API Skills Challenge?
October 21, 2020 -

I've been requested to take this REST API skills challenge on HackerRank: https://www.hackerrank.com/skills-verification/rest_api_intermediate

I'll be taking it in Java. I took it on a second account before trying it on my main account for practice and noticed that it wouldn't let me import what I would normally use (javax, java.web, gson, jackson, etc).

Does anyone know which library they are specifically looking for me to use? I failed it on my second account, so definitely don't want to fail when I actually take the test.

๐ŸŒ
YouTube
m.youtube.com โ€บ live โ€บ TEIgEPxfRG4
Hackerrank Certification REST APIs Certification (Football ...
Share your videos with friends, family, and the world
Published ย  May 16, 2023
๐ŸŒ
HackerRank
hackerrank.com โ€บ blog โ€บ rest-api-interview-questions-every-developer-should-know
REST API Interview Questions to Know - HackerRank Blog
August 31, 2023 - A look at 6 REST API interview questions every developer should know, with examples and insight into how to solve them.