Posts by thiago.adriano26 • 529 points
31 posts
-
0
votes1
answer67
viewsQ: Node Create an API to validate Azure AD login
Does anyone know how I could create an API to validate login with Azure AD and return a token?
-
1
votes0
answers36
viewsQ: Api Facebook live streaming
Has anyone ever needed to pick up a List of countries to send a POST with Geoblock using the Facebook API to connect a live? I’m linking my leads for a service, now I need to determine for it the…
-
1
votes0
answers110
viewsQ: Audio description in videos player- HTML 5
I am seeing to implement audio description in the videos in the company where I work, at first thought we create 2 videos and a button in the player to switch to the video with Audio B with the…
-
0
votes3
answers934
viewsA: I can’t post with Webapi
I don’t usually use Postman for tests, I like to create html with js, follow an example I created for my tests below, to work with your example just change the URL and the parameters of your object.…
-
0
votes1
answer111
viewsA: SNS AWS in . NET C#
I decided I had to subscribe to Vices
-
1
votes1
answer1242
viewsA: Download async with Webclient.Downloadfileasync
I had to do something similar recently, follow my code below: class Program { static void Main(string[] args) { ToDo(); Console.ReadLine(); } static async void ToDo() { await Task.Run(() =>…
-
1
votes1
answer734
viewsA: Error: "You must add a Reference to Assembly 'System.Runtime.Serialization'"
You tried to add it like that? I was with that same error, dai add her by right clicking on Ference in the project that was giving error and worked normal.…
c#answered thiago.adriano26 529 -
0
votes1
answer108
viewsA: Upload Video to Youtube with Asp . net MVC
If anyone needs one day I decided to change the login as below: public static Google.Apis.YouTube.v3.YouTubeService AuthenticateOaut(string clientId, string clientSecret, string userName) { string[]…
-
0
votes1
answer108
viewsQ: Upload Video to Youtube with Asp . net MVC
I’m trying to make an integration with Youtube, but I’m getting the error {"The remote server returned an error: (401) Unauthorized."} I released my key api as per the image below and I am testing…
-
5
votes1
answer210
viewsQ: Change the quality of a video stream c#
I need to change the quality of a video that is being aired by my Api, I’m already sending the file, now I need to change the quality of it at the time of transmission, follow my code below: var…
-
1
votes0
answers55
viewsQ: jwt.io integration with web api
Has anyone managed to find documentation or managed to integrate the http://jwt.io/ with Web Api? I’m looking for a step by step or documentation and nothing...…
asp.net-web-apiasked thiago.adriano26 529 -
0
votes2
answers6625
viewsQ: window.open javascript without the URL
I’m trying to open a new javascript window, but without the URL... I’ve tried some ways and nothing... has anyone managed to remove it? Follow my initial test code below: <!DOCTYPE html>…
javascriptasked thiago.adriano26 529 -
1
votes1
answer2573
viewsQ: Aws change instance EC2 from one region to another
I created all my instances in Oregon, there is a way by ADM I migrate to Virginia?
awsasked thiago.adriano26 529 -
4
votes1
answer1190
viewsQ: Unity 5 Delay in animation
I just created animation to run and jump with Unity, but I have a problem when the player goes back to the initial state of Idleplayer, when I stop running or jump it continues for another second, I…
-
2
votes1
answer3204
viewsQ: Create Phone Mask for Edittext
I’m trying to create a mask for my phone field, I saw some forums and tried the code below, but it is putting another pattern... I need to put in the pattern. EditText inputField = (EditText)…
-
2
votes1
answer111
viewsQ: SNS AWS in . NET C#
Someone has already implemented SNS in AWS with C#? I implemented the code below in an attempt by sending by topic created by the console, but need to do everything by our ADM on . net. Follow the…
-
0
votes0
answers40
viewsQ: Has anyone implemented AWS SNS for GCM and APNS?
I have a question: we managed to implement the sending to one device at a time, now we need to do the sending in batch, someone has already implemented the SNS of AWS for GCM and APNS in batches?…
awsasked thiago.adriano26 529 -
1
votes1
answer209
viewsQ: How to change Private DNS in AWS
I am climbing some machines in AWS and I need to change the Private DNS of the machines, initially I am trying to change in a linux, I do not know if this change is internal in the machine or ADM of…
awsasked thiago.adriano26 529 -
0
votes1
answer1130
viewsQ: how to compare with javascript two datepicker fields
I need to compare two fields in my html that are with datepicker. Follow my code below: var inicio = $("#Periodo_De").datepicker("getDate"); var final = $("#Periodo_Ate").datepicker("getDate"); if…
-
0
votes1
answer66
viewsQ: TFS integration with Dreamweaver
I’m installing TFS 2012 on one of the company’s servers and a debt arose, I searched the net, but I found nothing very conclusive... well I wonder if to use TFS with Dreamweaver ?
-
1
votes0
answers61
viewsQ: User Agent No IIS
Is there a way to set a User Agent for a Smart TV on IIS? I need to do this, to test an app we made for an LGE Smart TV, but our videos only work with the Smarts User Agent.
iisasked thiago.adriano26 529 -
1
votes1
answer390
viewsQ: Generate package for publication in Apple Store
I created an app on Phonegap and now I need to generate a package to publish in the Apple, my doubt is this: there is a way to create this package without having a Mac and the Xcode? I have…
-
2
votes1
answer251
viewsQ: Post in Timeline Facebook
I’m setting up a website where the user can request that content be posted on his timeline without him having to share it. Well I was left with the following doubt, seeing the return of this link:…
-
1
votes1
answer85
viewsA: Make a project with web Api c# return an RSS
I managed to solve with this tutorial http://www.strathweb.com/2012/04/rss-atom-mediatypeformatter-for-asp-net-webapi/ and adding the code below in Global.asax within Application_start :…
-
1
votes1
answer157
viewsQ: Remove Xnamespace in Xelement c#
I am in need of removing the Xnamespace that enters as default on an rss return. Follow the code below: static void Main(string[] args) { XNamespace ns = "http://search.yahoo.com/mrss"; var item =…
-
3
votes1
answer85
viewsQ: Make a project with web Api c# return an RSS
I’m needing to get my project in Rest WEB API to return RSS instead of json or XML ... I’d like to see if anyone has already done it ?
-
1
votes1
answer440
viewsA: Webapi view content in a view
If your return has to be a view, I recommend using a controller, as in the example below. webApi works as a WS, hence its return and a json or xml. public class ListaPresenteController : Controller…
-
1
votes1
answer668
viewsQ: Swift with sqlite
I’m trying to create a sqlite bank with Swift, but I’m having trouble with examples and documentation on the net, I wanted to see if anyone could connect in a sqlite bank with Swift ?
-
1
votes5
answers1054
viewsA: Contains in Class List
I tested it and it worked like this: var listaProfEsp = new List<ProfEsp>(); var lista1 = new ProfEsp(); lista1.Especialidade = new Especialidade { Id = 1, Nome = "teste" };…
c#answered thiago.adriano26 529 -
0
votes2
answers1179
viewsA: How does MVC layer-to-layer communication work?
The Mvc is composed of 3 layers Model View and Controller, in Asp . net mvc we have the following flow: the web browser calls an action such as your/Controller/action domain or to better exemplify…
-
3
votes7
answers54187
viewsA: Remove letters and special characters in a select
You can do the following select: select replace(replace('12345698-35','-',''),'.','')