mmcdole
mmcdole
This is also preventing us from submitting our app to beta testers via TestFlight. Now that we have to submit our builds for TestFlight through Apple, they reject our binary....
I discussed this in more detail in https://github.com/mmcdole/gofeed/issues/75 but, just wanted to circle back here. It would appear that the server in question is behind an Incapsula WAF, and their...
The `Source` field is specific to RSS feeds and isn't included in the universal `gofeed.Feed` type because it's not a concept that exists across all feed formats (Atom and JSON...
Yea, both this and https://github.com/mmcdole/gofeed/issues/228 As well as a few other issues have me questioning if I should loosen the reigns on the common feed elements.
The `skipHours` field is RSS-specific and isn't included in the universal `gofeed.Feed` type because it doesn't exist in other feed formats like Atom or JSON Feed. While you can access...
This has been implemented in PR #258. The `OriginalFeed` field is now available when `KeepOriginalFeed` is set to true in ParseOptions.
Thank you for the contribution! I'll look through the changes this week hopefully. One thing to consider is if we want to have these changes target the `v2` branch or...
Hey folks, I've implemented ParseOptions for v2 and wanted to get some feedback on the API. ## What changed v1: ```go parser := gofeed.NewParser() parser.UserAgent = "MyApp/1.0" parser.Client = customClient...
Thanks for the feedback @Necoro! This is probably _the_ most important design choice in terms of the future API "UX" and how people feel about using the library for `v2`....
I also, as of right now, only have the `ParseURL` functions on `gofeed.Parser`. At least in this v2 cut, I haven't extended network fetching of feeds to the feed specific...