-
-
Notifications
You must be signed in to change notification settings - Fork 72
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
Unable to add non-HTTPS Feed #493
Comments
The RSS Feed is build on a shared machine where another HTTPS Certificate is applied. I use my own HTTP version with domain I create a |
@msasikanth I allow http on my reader on both Android & iOS. I even tweak the okhttp configuration to allow everything: OkHttp.create {
val sslContext = SSLContext.getInstance("SSL")
//noinspection AndroidLintCustomX509TrustManager
val trustAllCertificates = object : X509TrustManager {
override fun checkClientTrusted(chain: Array<out X509Certificate>?, authType: String?) = Unit
override fun checkServerTrusted(chain: Array<out X509Certificate>?, authType: String?) = Unit
override fun getAcceptedIssuers() = emptyArray<X509Certificate>()
}
sslContext.init(null, arrayOf(trustAllCertificates), SecureRandom())
this.preconfigured = OkHttpClient.Builder()
.sslSocketFactory(sslContext.socketFactory, trustAllCertificates)
} |
Some of the popular rss feeds are still on http like, Paul Graham's essays @msasikanth it would be nice if we could add feeds from non-https domains. No pressure tho, just wanna tell you I love this app, the UX is amazing and it's hard to go back using feeder after using this. Great work! |
Describe the bug
I am hosting a self-managed RSS feed with no HTTPS certifacate. The Twine app seems unable to add RSS Feed with HTTP Protocol.
To Reproduce
Steps to reproduce the behavior:
HTTP
RSS feedHostname not verified
orUnable to Parse TLS Header
Device Information
The text was updated successfully, but these errors were encountered: