Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have a website which calls web API https://www.dreamtrips.com/
How can I find the web APIs used by this website to call different data?
Will fiddler give you the list of web API URLs called by this website?
You can use network tab in developer tools (F12) in browser to monitor all network calls. However, if the site does not have a public web API, the methods that are called will most likely be protected by CORS policy.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I'm wondering if someone already tried to implement the actions sdk in c#.
I want to implement a gooogle action service but currently I'm a bit lost how the deployment procedure should be here.
You can implement support for the Conversation API used in actions: https://developers.google.com/actions/reference/conversation
You have provide an HTTPS endpoint which will accept JSON payloads and then respond with the expected JSON responses.
The deployment process will be the same as for any action. That is not dependent on how you implement your HTTP endpoint.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I need to send a picture from one asp.net application to another. My receiver is an asp.net MVC application, but the sender can be a simple console application.
Senario
Application one has a link to an image and send/post this to application two by URL.
Application two receives/get the image and saves it to a folder on the server.
I have heard of REST, asp.net web api and web service but not found any tutorial how to do this.
Application #2, the receiver, has to have REST Web API which accepts a file (an appropriate mime type) and saves it, that's it.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I'm going on the process about network.
here is the phrase that occur frequently "System.Web.dll",
we all know the file "System.Web.dll" is very important to website,
but how does it exactly effect on the website,
can I continue to browser my web after I delete the file ?
what does it effect to my website ?
System.Web.Dll is old library responsible for whole http-protocol working. requests sending and creation.
You can not live without in either ASP.NET MVC or ASP.NET Web forms because it contains HttpContext - class which is responsible for client-server communications.
If you need to use not web, but networks like LAN you probably need System.Net.dll
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Hi can i integrate share buttons like facebook, twitter on my https site? Recently in my site i have integrated these buttons, but it looks like it prevents loading of these social media buttons since it is a https site. Is there any way to integrate these buttons?
You cannot load HTTP resources on an HTTPS page.
You need to load all external resources over HTTPS.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
When using jQuery ajax inside a .NET website and i'm returning things like JSON, should you use a standard aspx page or should it be a web service?
I know web services are used for external interfaces etc... I just wondered what was normal practice?
Thanks
A web service is an exposed end point that is normally used as an API, or in other words its end user is typically another application rather than a user interface.
On the other hand, Static System.Web.Services.WebMethod can be used in any .aspx page or more typically in a .asmx (web service) file.
If your function requires a call from another application then use Web Services. In other cases use Web-Methods.