Giter Site home page Giter Site logo

Comments (9)

itajenglish avatar itajenglish commented on June 15, 2024 1

I'm having this same issue on Android specifically. @stephanoparaskeva Were you able to find a solution for this?

from typesense-js.

jasonbosco avatar jasonbosco commented on June 15, 2024

@stephanoparaskeva It's interesting that it works with axios directly. We do add additional request options to axios, so I'm wondering if one these causes an issue in a React Native environment:

const requestOptions = {
method: requestType,
url: this._uriFor(endpoint, node),
headers: Object.assign({}, this._defaultHeaders(), additionalHeaders),
params: queryParameters,
data: bodyParameters,
timeout: this._connectionTimeoutSeconds * 1000,
validateStatus: (status) => {
/* Override default validateStatus, which only considers 2xx a success.
In our case, anything below 500 should be considered a "success" and not retried.
We will handle anything not 2xx, but below 500 as a custom exception below.
*/
return status > 0 && status < 500
},
transformResponse: [(data, headers) => {
let transformedData = data
if (headers !== undefined && typeof data === 'string' && headers['content-type'].startsWith('application/json')) {
transformedData = JSON.parse(data)
}
return transformedData
}]
}
let response = await axios(requestOptions)

To help debug this, could you try two things:

  1. Change localhost to an IP address. This seems to suggest that this could be a potential issue, although I'm not too hopeful that this is the solution since your direct axios request seems to work fine.

  2. Could you add the request options from above to your direct axios call and see if any of those cause the issue?

from typesense-js.

stephanoparaskeva avatar stephanoparaskeva commented on June 15, 2024

@stephanoparaskeva It's interesting that it works with axios directly. We do add additional request options to axios, so I'm wondering if one these causes an issue in a React Native environment:

const requestOptions = {
method: requestType,
url: this._uriFor(endpoint, node),
headers: Object.assign({}, this._defaultHeaders(), additionalHeaders),
params: queryParameters,
data: bodyParameters,
timeout: this._connectionTimeoutSeconds * 1000,
validateStatus: (status) => {
/* Override default validateStatus, which only considers 2xx a success.
In our case, anything below 500 should be considered a "success" and not retried.
We will handle anything not 2xx, but below 500 as a custom exception below.
*/
return status > 0 && status < 500
},
transformResponse: [(data, headers) => {
let transformedData = data
if (headers !== undefined && typeof data === 'string' && headers['content-type'].startsWith('application/json')) {
transformedData = JSON.parse(data)
}
return transformedData
}]
}
let response = await axios(requestOptions)

To help debug this, could you try two things:

  1. Change localhost to an IP address. This seems to suggest that this could be a potential issue, although I'm not too hopeful that this is the solution since your direct axios request seems to work fine.
  2. Could you add the request options from above to your direct axios call and see if any of those cause the issue?

It's the data: {} that you're sending, via Axios for GET in React Native as this threw an error for me. When I was making my axios queries to figure out a temporary alternative for typesense-js by using normal requests.

Perhaps you could test with create-react-native-app + typesense + axios GET with a data: {...}?

Maybe a cors error?

from typesense-js.

jasonbosco avatar jasonbosco commented on June 15, 2024

@stephanoparaskeva I've now updated the library to not send data for GET requests:

if (bodyParameters && Object.keys(bodyParameters).length !== 0) {
requestOptions.data = bodyParameters
}

Could you give it a shot now in React Native to see if it fixes the issue?

from typesense-js.

jasonbosco avatar jasonbosco commented on June 15, 2024

I know at least one user who's using Typesense with React Native, so closing this for now. Please feel free to re-open if this is still an issue.

from typesense-js.

itajenglish avatar itajenglish commented on June 15, 2024

Update: I was able to get it to connect by running adb reverse tcp:8108 tcp:8108

from typesense-js.

walter-ayala avatar walter-ayala commented on June 15, 2024

adb reverse tcp:8108 tcp:8108

Don't work it for me, i'm having the same issue on Android:
WARN Request #1703095543420: Request to Node 0 failed due to "undefined Network Error"
WARN Request #1703095543420: Sleeping for 0.1s and then retrying request...
WARN Request #1703095543420: Request to Node 0 failed due to "undefined Network Error"
WARN Request #1703095543420: Sleeping for 0.1s and then retrying request...

from typesense-js.

itajenglish avatar itajenglish commented on June 15, 2024

@walter-ayala I can help if you create a repo showcasing the issue that I can test

from typesense-js.

walter-ayala avatar walter-ayala commented on June 15, 2024

@walter-ayala I can help if you create a repo showcasing the issue that I can test

https://github.com/typesense/typesense-js/issues/189#issuecomment-1865244280 basically here would be everything related to the code of the project

from typesense-js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.