Problem calling Neo4j database instance in R Studio

Hello guys,

Please I created a Neo4j database instance, and I am trying to call it in R Studio, using the neo4r and neo4jshell packages. After running the api call, I still get 404even though I correctly specified the url, username, and password. Please find my code below:

library(neo4r)
library(neo4jshell)

myTwitter <- neo4j_api$new(
  
  url = "http://54.152.83.7:7474",
  user = "neo4j", 
  password = "mypassword"
)


myTwitter$ping()

When I run the last line of code, I get the 404 instead of 200, which obviously means my api call was not successful. Please I would appreciate your helpful suggestions. Thank you

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.