Welcome to the Adobe Developer Community! Connect with peers to ask questions and share best practices.
Recently active
Hello people, i have been trying to make log forwarding to splunk instance that splunk instance seems to be working well (is a splunk cloud trial) and after doing a curl it seems to be working well: curl -k https://xyx-y-xxxx.splunkcloud.com:8088/services/collector/event -H "Authorization: Splunk xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" -d '{"event": "hello world"}' {"text":"Success","code":0} But when i try to set on App Builder using: $ aio app config set log-forwarding ? select log forwarding destination Splunk HEC ? host xyx-y-xxxx.splunkcloud.com ? port 8088 ? index main ? hec_token [hidden] » Error: Could not update log forwarding settings for namespace 'app-builder-sandbox-instance': 400 (Bad » Request). Error: {"reason":"Validation failed","message":"[Splunk HTTP Error: connect timed out]"} so i still cannot figure out why is this not working it would be glad if someone has been passed through this or a similar situation that could give a clue of
I had this problem quite a lot of times while testing my App Builder Application.Basically I always first tried to run the actions via the Experience Shell yet run into problems because of it regularly.(aio app run)The error always looks like that with different "code":time: 874 msfailed request to 'https://#####.adobeioruntime.net/api/v1/web/#####' with status: 400 and message: {"code": "lozU6fbz5Ms2dlzFrIRhSyPMm1J7kjNO","error": "There was an error processing your request."}Strangely everything is still working when testing without the shell using f.e. Postman or Altair GraphQL Client. Even directly calling an action in the browser works. Any idea why that error happens and/or how to solve it?(I am using Chrome browser and sometimes clearing the cache seems to help)
Hey there, the title pretty much explains what I want to inquire about.I was told by the support that they don't answer this type of questions and that I should come here to ask them:I am currently testing the adobe app builder but before actually using it for anything more than testing I would like to know a few things:Can you tell anything regarding the costs at this time?How much will the use of the app builder and the i/o runtime cost?What about the stability of the actions that will run in i/o runtime? The last question is more about adobe in generell:How/Where do I save Data "in adobe"? I don't think I would need an extern server just for a db if my SPA or my headless application runs serverless.Best regards, Maximilian
I wanted to store some of my API response in datastore/ database (which am currently using my local db), however if I use App Builder, is there a provision to store data (not cache) but store it for later usage.
Hi Team, Is there a way to use "Insert Into" queries in AEP query service to ingest data into AEP Dataset which has particular schema? Thanks in advance!! @dbenge@joshua_eisikovi
Hi, I have created an app using `aio app init` and gone through adding the actions and code and deploying it etc...Now my colleague wants to connect to be able to update and deploy etc...They have the code from the repo downloaded but I'm not sure how to connect them to the app? Do we run `aio app init` again? If so are there any specific options to choose as it is asking us about creating actions etc...When trying to do `aio app deploy` with the code form the repo we now get... "Error: missing Adobe I/O Runtime namespace, did you set the AIO_RUNTIME_NAMESPACE environment variable?" Thanks
I would like to receive notifications via webhook if e.g. colors (as in Adobe Colors) change. I have created a new test project and added a new event (Creative Cloud Libraries --> Selected Creative Cloud Library Updated --> OAuth).No matter what I do, I cannot redirect to the user consent for listening to webhooks.Under credentials, I see OAuth Web App with the scopes creative_sdk and openid. This is the request I am using: https://ims-na1.adobelogin.com/ims/authorize/v2?response_type=code&client_id=50**redacted**ed1&scope=creative_sdk%2Copenid&redirect_uri=**redacted** This request always redirects back to my endpoint with error=invalid_scope.If I only use openid for scope, the redirect works (without granting access for change notifications). What am I doing wrong?Is there any way to see which scope is wrong or invalid? Thanks
Hi @61380 Team, Incident ID raised to Adobe : 220422-000111Due to some challenges to capturing the Transaction data from UI, we are capturing using S2S integration to Adobe analytics.But some of the transaction events are not reflecting in the Adobe analytics even though we are receiving the response status as 200 from Adobe IO service. we are facing this issue in Production and lower environments.Below is the one of the PROD responses for reference.Order ID : BPPTN0404902229903843328 , is_data_sent_to_analytics = True , Time --> 2022-04-22 07:38:16.201 Logs -->{"digitalData":{"customerId":"dc6edccabcc8f0c0cb16baa582f20695","hostIP":"19X.16X.29.19","product":[{"productid":"1","quantity":"1","price":"38.0","category":"CAT1011","eligibleforTCL":""}],"brand":[{}],"tataPay":{"numOfOffersApplied":"0","multiTender":{"name":"Debit Card|"},"orderid":"BPPTN0404902229903843328","noOfQuanties":1},"transaction":{"totalRevenue":"38.0","transactionId":"TDL1650613014395000000000000117
Hi Adobe team, I recently got accepted into the App Builder trial program and I'm trying to create a project from template however when I click the save button on my project it gives me the following error "Service getValidateAppName failed. Error code: 415 , Error message: Unsupported Media Type". This occurs even when I click save without changing any of the default parameters which are loaded up e.g. not adding extra workspaces and not changing the default app name and project title. Would very much appreciate any insights into this issue or potential solutions! **EDIT: It was a bug in production that occurs when the org doesn't yet exist as a publisher org in ARS. This ticket has already been resolved and the issue doesn't occur anymore. Thanks,Geoffrey He
Am trying to deploy headless app with installed adobe campaign sdk but getting error as per screenshot. Could you please help on this? Error
I am trying to set up the IO runtime dev environment locally. Directions here state that I need to setup a ".wskprops"file with following details :AUTH=<Your UUID>APIHOST=adobeioruntime.net NAMESPACE=<Your namespace>What should be Auth variable set to ? I understand that this is basic authentication string.Should this be "CLIENT ID:CLIENT SECRET" ?I have tried that and when I try to verify "wsk list". Keep getting this :error: Unable to obtain the list of entities for namespace 'default': The supplied authentication is invalid
In adobe IO action I need to fetch data from an external endpoint and return the response back to campaign standard,I need help on this one,Thank you !
Good morning everyone,I'm thinking of creating a new version of my photography site in React, as a Single Page Application.Currently my site is made with Adobe Portfolio, of which the thing I am most interested in is the integration with Lightroom Cloud, to get albums and photos.I wanted to understand if it is possible through the Lightroom API to get the photos to display on the site from my Adobe CC account. I mean without Login, so that when someone opens the site, React gets the photos directly from Lightroom. Clearly with a public album but in a secure way.Is it possible to use the API in this way?Thanks
Hello, I'm playing around with CloudEvents and have the following issue: I configured Eventmetadata and then fire an event like folowing:function createCloudEvent(providerId, eventCode, payload) { let cloudevent = new CloudEvent({ source: 'urn:uuid:' + providerId, type: eventCode, datacontenttype: "application/json", data: { hello: 'world' }, id: uuid.v4() }); return cloudevent } As a result, event is fired successfully and webhook got triggered.But Body of it is always empty: Will be very thanksfull for any help
when try to invoke actions on a app builder local (aio app run) there is a console error that says: Access to fetch at 'https://xxxxxxcyanelk.xxxxxadobeioruntime.net/api/v1/search_test/index-page from origin 'https://localhost:9080 ' has been blocked by CORS policy: Request header field x-ow-extra-logging is not allowed by Access-Control-Allow-Headers in preflight response" ,so i proceed to add it to and then it says: Access to fetch at 'https://xxxxxxxxcyanelk.xxxxxxadobeioruntime.net/api/v1/search_test/index-page ' from origin 'https://localhost:9080 ' has been blocked by CORS policy: Request header field access-control-allow-headers is not allowed by Access-Control-Allow-Headers in preflight response.so i proceed to add it to but then it still saying the above error, so i'm not sure if the headers error is something that has to be added here or not since even if i add it at the end is no making any effect (at least on the part of adding access-control-allow-headers t
Actually it happens with any method type (post/put/get/delete) request with node fetch at action level to Elastic Search API running on port 36029 responses error 503 timeout, i have events that triggers actions in this case if send a the same request from postman it works fine but the request done at action level when is triggered it responses error 503 timeout which makes me suspect there is some kind of restriction on request sent from adobe io runtime on api endpoints running on non standard ports such like 36029, my question is: can this be possible? and if so how can i change this?
Hello Adobe teamAs i prepare for the final leg, could you please help and clarify the following a.) is there any setting/variable that can be used to detect the app builder env (dev/staging/prod) ? This is to switch AEP sandbox within the code from dev to prod on publishing of the app.b.) i will be using the out of box github CI/CID to deploy this app, to update the headless app do i just push the latest version via CI/CD and that will update the prod app? c.) What is the procedure/steps to undeploy the app in worst case scenario? could not find any docs on this. Is this done using github CI/CD? Thank you!!
Hey Adobe Team! I'm working on couple of apps and would need some guidance around some of the issues i'm facing. a.) Headful app: I have a app (not published yet) and plan to publish it soon, recently i recieved emails regarding public key expiring for the app. How to fix this? How long does the certificate last or how often does it expire? What are the process to follow once app is pushed to production to ensure this does not affect the app? Like this one below expired this week. Per the docs, do we have to generate a Public key (if yes how? ) and Add it within project (as shown in image)? and that should do it?? Does the SSL issue apply to headless app as well? or any service built using that service account? b.) Persistent variable for cron job My second app is an headless app which would run every morning, i need to store successful run timeStamp for set of tasks to compare the next day. I was looking at State library
Hi i got an error saying http error 403: 403 {"error_code":"403025", "message":"Profile is not valid"} i am using asset compute with the app builder template i check admin console i have given myself all product profiles, what else could be missing?
HI,Do we have any mechanism where we can place the Adobe IO Runtime actions under a VPC and make secure communication to other applications in the same VPC.Any insights into this would be of great help. Thanks and regards,Ronit Banerjee.
Hi, I see that there are a lot of activations deployed to the platform, due to "invoke" command action on IO Runtime engine (aio rt activation list). Is there the possibility to remove the old versions of the actions or clean up the activation list ? Thanks for any advice. Giuseppe
I wanted to create Adobe Project in Developer Console, however limit ability to EDIT/ DELETE (Project along with its resources) to certain set of user only. Is it possible ?
No text available
Hey Guys! @dbenge This one is new tried both on mac and windows, i get the error Error: The "path" argument must be of type string. Received undefined. I get this when i'm trying to create simple headless app from the codelab --> https://developer.adobe.com/app-builder/docs/resources/cron-jobs/ This happens only when i addd the triggers and rules to the yaml. triggers:everyMin:feed: /whisk.system/alarms/intervalinputs: minutes: 1rules:everyMinRule:trigger: everyMinaction: genericThe build works fine without it. What could be the cause? Here's a screenshot and aio info aio INFO System:OS: macOS 12.0.1CPU: (10) x64 Apple M1 ProMemory: 20.02 MB / 16.00 GBShell: 5.8 - /bin/zshBinaries:Node: 14.18.1 - ~/.nvm/versions/node/v14.18.1/bin/nodeYarn: Not Foundnpm: 6.14.15 - ~/.nvm/versions/node/v14.18.1/bin/npmVirtualization:Docker: 20.10.8 - /usr/local/bin/dockernpmGlobalPackages:@61380/aio-cli: Not FoundProxies:http: (not set)https: (not set
I am trying to access a file on S3.This is a POC - the idea is to build the code in JavaScipt, deploy it on AIO and run it.The code uses aws-sdk module and works just fine when running it on my local terminal (using command node <filename>.js). I can even deploy the code onto AIO, by creating an action. However, the issue is I am unable to run the code. I am met with this error while trying invoke the action: I have created a templated Firefly project on developer console, configured CLI, workspace etc. as mentioned in the documentation; even installed aws-sdk package in the project directory and added the dependencies in package.json file as well. I continue to face the same error. If anyone has figured out how to get this to work, please do provide a code sample or let me know where I might be going wrong. Thanks!P.S. I am picking up JavaScript on the go and can possibly ask tons of silly doubts - so TIA!
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.