Issue I want to (call)debug my asp.net core application from remote computer or mobile device? please help me. In standard .net add this code in .vs\config\applicationhost.config when change <binding protocol=”http” bindingInformation=”*:21918:localhost” /> to <binding protocol=”http” bindingInformation=”*:21918:*” /> its worked. <site
Continue readingTag: api
[SOLVED] API 400 error Username required Password required
Issue I am sending JSON data to external API as following : Dim url = "https://********" Dim _httpClient = New HttpClient() _httpClient.DefaultRequestHeaders.Authorization = New AuthenticationHeaderValue("MyUsername", "MyPassword") Using content = New StringContent(json, System.Text.Encoding.UTF8, "application/json") Dim result As HttpResponseMessage = _httpClient.PostAsync(url, content).Result
Continue reading[SOLVED] Not all rows of data from csv file is retrieved in excel
Issue So i’m working with my colleagues code and right now he was written up a macro that gets data from an api that is in a csv format. The code is supposed to gather this data, enter it into
Continue reading[SOLVED] REST – User and User Profile (1:1 relation) routes and endpoints structure
Issue I am currently developing a REST api (using mongoDb, node.js and express) that will handle 4 kinds of users. I have decided to use a collection that stores common data between all types of users (email, hash, role, etc.)
Continue reading[SOLVED] Alternative to next_auth and other frameworks for authentication in Next.js
Issue I am trying to develop a flexible authentication system on Next.js that can use a Spring (Java) API backend. The endpoints function perfectly using Postman. The API also provides its own JWT. I want to sign in registered users
Continue reading[SOLVED] 429 Too Many Requests, Fetch to much on my API with React
Issue I’m trying to fetch like 5 API which caused this error and now my page wont show anything. I’ve been told to use setTimout to fix it. But i never use setTimout and having hard time using it. Can
Continue reading[SOLVED] php telegram sendPhoto not working (url & file location)
Issue I need some help if possible with php sendPhoto api, I’ve been using the sendPhoto method in php on my apache server to auto send images into telegram, I’ve been using this same method for almost 6-7 months and
Continue reading[SOLVED] How to get current Mastercard rates (buy/sell currency)?
Issue I need to check current Mastercard rates for multiple currencies in my app but I can’t found any correct API to do this. In the same time, large count of sites has regular updates for this rates. Can someone
Continue reading[SOLVED] How to get nested elements with JacksonXmlRootElement?
Issue I am using Java/Spring I have XML like this: <Transfer> <Data> … </Data> <Transfer> and I just need to access to XML element "Data" for my model, like: @JacksonXmlRootElement (localName = "Data") Is it possible without additional wrapper class?
Continue reading[SOLVED] Looping Through array from json responce using foreach loop
Issue i called an API and used JSON decode to get array result of the response using the code belodw <?php $url = "*******************************"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Authorization: Bearer ************************************N2VlODFjMTkwNg", );
Continue reading