zendesk

vue项目使用zendesk

牧云@^-^@ 提交于 2020-01-21 03:10:40
vue + zendesk 初始化,我这边写在app.vue 中 1.将zendesk的js包放到index.html,js包的地址在zendesk的后台:设置->小组件 2.初始化代码写在app.vue 项目的要求是只有到服务tab下,zendesk才能出现,所以我在app.vue中现将zendesk隐藏 zESettings可以设置组件的颜色之类的,具体可以看他们的文档,文档是全英的。 zE ( 'webWidget' , 'hide' ) ; window . zESettings = { webWidget : { position : { horizontal : 'left' , vertical : 'bottom' } , color : { theme : '#0AB781' , launcher : '#0AB781' , launcherText : '#fff' , button : '#0AB781' , buttonText : '#fff' , resultLists : '#000' , header : '#0AB781' , articleLinks : '#FF4500' } , offset : { horizontal : '0px' , vertical : '90px' , mobile : { horizontal : '0px' ,

422 error when creating a ticket in Zendesk

不打扰是莪最后的温柔 提交于 2020-01-01 09:46:09
问题 I am developping an app in ASP.NET MVC5 using Zendesk_v2 (uploaded using a nuget package). I have admin rights for subdomain easynext.zendesk.com. Here is my code for creating a ticket: private static string requestUri = "https://easynext.zendesk.com/api/v2/tickets.json"; private static string _username = "gbalasel@easynext.be"; private static string _password = "MYPASSWORD"; private static ZendeskApi apiZendesk = new ZendeskApi(requestUri, _username, _password, ""); private void

Android : Customize Zendesk Rate My APP UI

和自甴很熟 提交于 2019-12-24 12:51:24
问题 How can I customize rate my app dialog of Zendesk. In sample app a style is added in style.xml file and it is working. But I don't know how to apply that style for Rating dialog. Please help me. Thanks in advance. style.xml: <!-- +++++++++++++++++++++++++++++++++ --> <!-- Start rate my app dialogue styles --> <!-- +++++++++++++++++++++++++++++++++ --> <style name="rma_button"> <item name="android:background">@color/light_background</item> <item name="android:gravity">center</item> <item name=

Source Code for Mule ZenDesk connector?

只愿长相守 提交于 2019-12-22 00:26:17
问题 The source code for many of the MuleSoft's connectors is available on their GitHub page. But I haven't found the source code for their Zendesk connector and Google isn't being very helpful. The reason I'm looking is that I'm still trying to debug the “null (java.lang.UnsupportedOperationException). Message payload is of type: ZendeskConnector$1” error I posted about before. I'm really stumped, but I thought if I looked at the source it might give a clue. 来源: https://stackoverflow.com

Jira for bug tracking and customer support?

只谈情不闲聊 提交于 2019-12-20 09:57:29
问题 We are thinking of using Jira for bug tracking and to integrate it with Git to connect bug fixes with version handling. Do you recommend Jira also for customer support or should we find another system like for example Zendesk for that purpose? I know that it is possible somehow to integrate for example Hipchat with Jira to enable chat functionality with customers but is Jira too complex for Customer Service to handle? What is your experience? 回答1: We use Jira for customer support, but we

How to Promisify this function - nodejs [duplicate]

跟風遠走 提交于 2019-12-17 19:44:53
问题 This question already has answers here : How do I convert an existing callback API to promises? (20 answers) Closed 3 years ago . I have an ajax call which needs to return a promise. The function is as follows client.tickets.create(ticket, function(err, req, result) { if (err) { logger.error(err); return false; } return JSON.stringify(result); }); I have to wait for this function to execute before I can perform the next action. How can I promisify this function ? I tried the following and it

Passing a form input into a chat

谁说我不能喝 提交于 2019-12-13 03:23:39
问题 Ive created a simple html form with a text input and a submit button. I was told that with a little javascript, I could make it so when users fill out that input and click the submit button, it would open up the live chat and automatically have their submission as the first message in the live chat. Here's my form: <form name="question"> <input type="text" name="important"> <input type="submit" value="Submit"> </form> I was told I have to include the api with the 'say' function ( https://api

Convert NSData to NSString - NSLog limitation

柔情痞子 提交于 2019-12-11 04:55:29
问题 I'm trying to convert NSData to NSString in Zendesk but am getting a incomplete string, or at least not able to fully decode the data . When I curl the following command: curl https://mySubdomain.zendesk.com/api/v2/users/1038194884/tickets/requested.json -v -u myLogin:myPassword I get the correct response and it list all the tickets of this user, the response is as follows: < HTTP/1.1 200 OK < Server: nginx < Date: Sat, 28 Jan 2017 19:50:16 GMT < Content-Type: application/json; charset=UTF-8

Mule + ZenDesk: Unhelpful error message: “null (java.lang.UnsupportedOperationException). Message payload is of type: ZendeskConnector$1”

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-07 08:17:21
问题 I think this is some type of generic MuleSoft error message, basically saying that it's either unhappy about the input or output, but I've made the simplest flow that I can, and as far as I know there are no parameters to pass. The test flow I'm trying to do: HTTP -> ZenDesk/ListTickets -> Set Payload ("hello world") Things I've looked at: I'm using a global config and the connection verifies I'm using my password (vs. the security token) If I make the password incorrect I get a 401 as

Mule + ZenDesk: Unhelpful error message: “null (java.lang.UnsupportedOperationException). Message payload is of type: ZendeskConnector$1”

a 夏天 提交于 2019-12-05 15:54:16
I think this is some type of generic MuleSoft error message, basically saying that it's either unhappy about the input or output, but I've made the simplest flow that I can, and as far as I know there are no parameters to pass. The test flow I'm trying to do: HTTP -> ZenDesk/ListTickets -> Set Payload ("hello world") Things I've looked at: I'm using a global config and the connection verifies I'm using my password (vs. the security token) If I make the password incorrect I get a 401 as expected, same if I use my key instead I have admin/API privs in ZenDesk I'm able to use the REST API from a