Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error at self-signed-ssl-server code sample on README #84

Open
tales-aparecida opened this issue Jun 25, 2018 · 2 comments
Open

Error at self-signed-ssl-server code sample on README #84

tales-aparecida opened this issue Jun 25, 2018 · 2 comments
Labels
help wanted Extra attention is needed

Comments

@tales-aparecida
Copy link

There's an error at https://github.com/joltup/rn-fetch-blob#self-signed-ssl-server

RNFetchBlob.config({
  trusty : true
})
.then('GET', 'https://mysite.com') // wrong line
.then((resp) => {
  // ...
})

should be

RNFetchBlob.config({
  trusty : true
})
.fetch('GET', 'https://mysite.com')
.then((resp) => {
  // ...
})
@Traviskn Traviskn added the help wanted Extra attention is needed label Jul 11, 2018
@Traviskn
Copy link

We would love to have a PR to update the README 😃

@tales-aparecida
Copy link
Author

Here you go

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

2 participants