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 8 years ago.
Improve this question
I see a lot of information on using PayPal as a checkout option on your website. However, I can't seem to find any concrete information on using PayPal to pay your users. I'm looking for the correct API to do this in an ASP.NET application.
I found this on NuGet, but I don't know if it accomplishes what I need. So, which API should I be looking at in order to pay users using PayPal? Which information will I need from them in order to pay them?
The Classic API has something called MassPay. This pays anyone via PayPal (or email) but it costs up to $1 to use.
I ended up going with AdaptivePayments, which allow for direct payment from your account (therefore requiring no approval). THIS is the guide I found most helpful.
Related
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 2 years ago.
Improve this question
I hope there is someone here who could help me:
Due to a project for the university I'm trying to implement a cross-platform app (using Xammarin&Visualstudios&C#). We want to send vitaldata (like steps, pulse, ecg, etc.) from our Smartwatches to the Google Fit App and then integrate the data from the Google Fit API into our own App. It's the first time I'm working with an API and I don't really understand how I can implement it. There are several examples on the internet and also instructions directly from Google (https://developers.google.com/fit/android/get-started), but they are not designed for Visual Studios and Xamarin. Furthermore the packages used there are not available for Xamarin.
What I have found out and implemented so far:
OAuth at the Google Console
the NuGet package is apparently called Google.Apis.Fitness.v1 (https://googleapis.dev/dotnet/Google.Apis.Fitness.v1/latest/api/Google.Apis.Fitness.v1.html)
What would be the appropriate steps to take? Do I first have to create a client and how do I do that? For example, how do I access the "steps" counter?
It would be very nice if someone could help me with the implementation.
Thanks a lot
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 6 years ago.
Improve this question
I am working on a website that displays information about an application in C#.
What I would like to achieve is that whenever someone for example click a button in the application the website adds 1 to button clicks.
How would I achieve this?
If you are not looking to build something totally from scratch, you could look into using googles measurement protocol. Although it does not allow the collection of user specific data, tracking button clicks or other application actions is what it's meant for.
https://developers.google.com/analytics/devguides/collection/protocol/v1/
The measurement protocol will take care of the data collection and storage of your application events and the data could be viewed using the standard Google Analytics interface; helpful for testing. Then if you wanted to display the collected analytics on your custom website you could use the reporting api.
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 8 years ago.
Improve this question
I want to obtain the geo location of users without their permission. Thus I dont want to use the javascript html5 method.
I'm more thinking of a hosted service, where we call their api and based on the users IP address they determine a rough location.
Ive been on a lot of sites that clearly do this and know roughly where your located.
Can anyone recommend a solution to this in either code or hosted solution.
This will probably help you..
http://www.iplocation.net/
http://msdn.microsoft.com/en-us/library/system.web.httprequest.userhostaddress(v=vs.110).aspx
HttpRequest.UserHostAddress should get you sorted. It will get the current request's IP address.
As to the physical location, I believe you'll have to pay a service for that. Any more information would be solicitation of a service, which is frowned upon.
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 8 years ago.
Improve this question
I am implementing MS-WOPI host with MS-WOPI client being Office Web Apps. I want to provide Word editing functionality and need to implement MS-FSSHTTP protocol.
I read the documentation http://msdn.microsoft.com/en-us/library/dd943623(v=office.12).aspx and
I also tried to fined some examples, but didn't get the success.
Could someone provide a simple example of MS-FSSHTTP implementation?
Here is a sample implementation using CobaltCore. Pretty much a combination of my answers about WOPI/FSSHTTP on this website in one project.
https://github.com/thebitllc/WopiBasicEditor
I think you're asking for the impossible. There is no such thing as a simple fsshttp server. Look at the videos on MSDN from conferences where they've discussed it. The fsshttp team estimates it will take over a year to properly build out a protocol server. It is not a project for the faint of heart.
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 3 years ago.
Improve this question
I wonder how to make a domain name checker (testing for availability) for top-level domains?
Eg. to check if the domain: stackoverflow.com or stackoverflow.dk is available or not.
Do I need to be subscribed to a service to do this, or is there some simple magic behind such test?
Thanks
You need to do a WHOIS lookup - see http://www.aspdev.org/articles/build-whois-lookup-asp.net/
It seems there is a protocol for this check "A Domain Availability Check". I am not sure if this is only for the german .de domains or for all domains. Maybe this will help you a little bit.
Your best bet would be to create a webRequest object to fire off a whois request. You can then parse the results from the HTML using regex. I've done this on a number of occasions and it works well (providing the underlying website doesn't change)
an helpfullweb service client
http://www.whoislookup.be/wswhois/wswhois.asmx
referance
http://www.whoislookup.be/using-an-webservice-to-access-whois-search.aspx