Is there a way to create a product on Shopware 5 with Python? If yes where is the documentation? I only found SW5s API doc but there is nothing regarding to further implementations. There is one entry for shopware on PyPi but the creator added no comment or description besides the publishing date on the readme.
As Python is the only language i know at the moment, and the only my last scripts i try to develop are in, i need to find a way to use the shopware API through Python. is there any way to accomplish that?
I am certain that python is capable of performing post requests. Here you would find a reference on the article endpoint of Shopware 5. Unfortunately, due to a german translation error article === product in Shopware 5.
Related
I am prototyping a Shopware App right now, where I want to extend the search with our search API. We already have a working plugin in the store for that.
I found those two references for hooks:
https://developer.shopware.com/docs/resources/references/app-reference/webhook-events-reference
https://developer.shopware.com/docs/resources/references/app-reference/script-reference/script-hooks-reference
Seems like there is no webhook for the search at all and just a script-hook for a finished search. In the plugin, we could just extend the ProductSearchRoute and be completely flexible.
Are search extension not planned right now?
Cheers,
Tobias
I assume you want to alter the criteria for fetching the products. As of today this is not yet possible with non-self-hosted apps. You could use the app scripts to enrich or replace the contents of an already loaded page as you already mentioned. Obviously that comes with some drawbacks regarding performance. The capabilities of apps are being enhanced continuously though so there's chance search manipulation might become possible rather soon.
I have worked on Net-suite Suite Talk web services.Now i want some customization on my account using suite script.
I am adding checks to Net suite and check have some items.I want to add those items to deposit section.
user will select the check from drop down on Deposit page.
List of item will be displayed and user can check those to upload to deposit section.
How can i do that and how can i learn suite script to complete this task?
Thanks in advance.
HItesh Kumar
The best way to learn it is to RTFM. Although the SuiteAnswers documentation is far from being the best, it is a good place to start. After that, read the API file & get to know the API. Once you have a good, practical understanding of the APIs, then work with the code in the debugger.
Aside from that, you would need to add your current code in your questions, and the errors that you are receiving.
Those could be useful however if you try to learn SuiteScript 2.0 which I recommend because SuiteScript 1.0 will no be longer supported, then the API Doc is not very useful because the examples are very short and even with errors.
The best resource I found so far is:
https://stoic.software
Very professional guy with good knowledge, expertise and good prices.
After some time spent scouring google and looking through the Sonar Qube API documentation, along with trying a few permutations on common patterns, I have arrived to the point where I am wondering if it is even possible to use multiple parameters when doing an issue search in SonarQube's API.
Purpose of search is to populate a team radiator with issue data from Sonarqube. This data will be combined with build data from other sources (Or else I would just link to the SonarQube display page)
current configured URL to api is:
https://sonarqubesitehere.com/api/issues/search?=projectKeys=com.projectnamehere
(This is dummy code with names changed to protect the innocent)
I would like to be able to add a second parameter to this search that allows me to receive only major (or minor) issues that belong to the specific project I specify. the search term for that search is /search?severities=MAJOR
Anyone wrangled with this particular problem?
Please check the WS API on sonarqube.com or your own instance like: https://your-sonarqube.com/web_api/api/issues/search.
Here's an example of api/issues/search with several parameters
Hummmm... Provided that you read the Web API documentation for /issues/search, and that you know how to correctly write a URL that uses parameters, then it's quite easy to find that the solution is the following:
https://<your_server>/api/issues/search?projectKeys=project1Key,project2Key&severities=MINOR,MAJOR
Live example on SonarQube.com: https://sonarqube.com/api/issues/search?projectKeys=clang,git&severities=BLOCKER
I have an instance of Nuxeo 5.8 installed and running on s3 and I want to extend it so I can add customized metadata to an asset. E.g., say a normal asset has metadata like "title", "description" and "author", I want to be able to add my own fields like "brand" and "SKU" (among others).
From what I understand it's only possible to do this via the front end when you have upgraded to Studio, so what I'm looking at doing is somehow extending the API (and the related XSDs?) to allow extra metadata. Also, once I've extended the API I'm aware that I'll have to provide my own front end that interfaces with my extended API, and will have to bypass the out-of-the-box Nuxeo front end.
What exactly do I need to do to achieve this? I'm guessing I'll need to write a Java app that interfaces with the Nuxeo API somehow?
I'm struggling a bit to find documentation for 5.8 - I did come across Customizing metadata for 5.5, but I'm guessing this is out of date?
Any insight would be much appreciated.
I've also posted this question on Nuxeo's answers site here.
This was answered on the Nuxeo answers site.
I've been using Kohana 2.3.7. There are somethings that are holding us back to using Kohana 3 and one is the lack of modules compared to 2.3.7. For instance, I can't seem to find the Payment module (Paypal, 2C0, Authorize.net, etc) present in 2.3 to 3. If there is already, can you please direct me to it?
Thanks for the help.
There are a few payment modules for Kohana 3.
Paypal
Google Checkout
Both created by Woody Gilk.
You also have the option of porting the Kohana 2 libraries. Takes no longer than half a day and gets the job done.
You can load the official authorize.net PHP SDK as a Kohana module.
http://dev.strategystar.net/2011/10/authorize-net-module-for-kohana-3-x/
I hope it helps. The two resources that Pixel Developer posted work nicely for Paypal and Google Checkout.