so i understand that there is a sandbox but how do i actually implement into the website , like id hate to ask like this but i cant seem to find instructions to this or a wiki etc etc.
12-07-2015 08:44 AM
12-07-2015 08:57 AM
ok so i read the diagram , and i watched the videos that applied to me but they dont say anything about how to apply the api to a website . or am i looking at this all wrong and the samples are just a guide for how my code should look?
12-07-2015 09:17 AM
Hello @bluedaisy
May I suggest starting with Payment Transactions in our API Feature documentation. It provides an overview of transactions from a developer perspective along with links to relevant developer training videos.
Richard
12-07-2015 10:54 AM
this helps alot thanks
12-07-2015 11:02 AM
Same, I am using ASP.NET forms, and the Hello World tutorial only covers MVC. Plus every time I fix an error, a new error appears. I need a clear tutorial for a beginner to code the basic functionality.
12-08-2015 12:48 PM
Okay I got this code to work (Hello World code didn't work):
http://developer.authorize.net/api/reference/index.html#payment-transactions
And I added this code to my asp.net page:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace net.authorize.sample
{
public partial class payments_test : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
ChargeCreditCard.Run("xx", "xx");
}
}
}
12-08-2015 01:10 PM - edited 12-08-2015 01:12 PM