Marek Trunkát
Marek Trunkát
In the network, this gives 404 - https://apifier-key-value-store-prod.s3.amazonaws.com/7fMXPPEAuFdaWCvQt/OUTPUT?AWSAccessKeyId=AKIAJTQHBVH6QKNNBOIQ&Expires=1595574947&Signature=TQPjEY%2BVpXeqlC%2FrRAllX2kdQAc%3D
JSON input is not user-friendly. This needs to be implemented at the platform first and enabled in input schema.
* The getting started guide doesn't mention how to enqueue requests manually, I found it somewhere in the SDK docs. Maybe giving an example of enqueueing requests manually in the...
Call operations needs to support the input passing. Having a CLI that can't do the main action of the platform - to run an Actor - is quite sad 😢....
Apify CLI should support the organizations in an equal way to Apify Console UI, i.e., the user should be able to push Actor under their own account or under the...
From this discussion https://apifier.slack.com/archives/C013WC26144/p1653552365035479, it seems that sometimes there is a series of network errors that lead to a suspicion that the client might be retrying the requests to the...
We have 2 main endpoints for [dataset items collection](https://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items) enabling manipulation with items stored in the [dataset](https://docs.apify.com/storage/dataset) - `dataset.listItems()` https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.js#L58 - `dataset.pushItems()` https://github.com/apify/apify-client-js/blob/master/src/resource_clients/dataset.js#L140 to make transformation more effective we could...
For example request to kv-store with invalid record key - `/v2/key-value-stores/FqL6uryckkkdaXEmr/records/•` causes an error `TypeError: Request path contains unescaped characters`.
I have a simple jest test that uses Apify client: ```js const { getApifyClient } = require('./helper'); const ACTOR = { name: `my-name`, versions: [ { versionNumber: '0.1', envVars: [],...
Both SDKs docs: - [ ] Add proxy usage examples - the question was "Setting up proxyConfiguration for Selenium python actor. I though that it would be in the Python-selenium...