Skip to content

Commit

Permalink
Merge pull request #34 from iyzico/develop
Browse files Browse the repository at this point in the history
Random String format changed
  • Loading branch information
sotuzun committed Apr 19, 2016
2 parents 5d8bbdf + 979c3b8 commit 808aa97
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion iyzipay-dotnet/IyzipayResource.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
Expand Down Expand Up @@ -29,7 +30,7 @@ public IyzipayResource()

protected static WebHeaderCollection GetHttpHeaders(BaseRequest request, Options options)
{
string randomString = DateTime.Now.ToLongTimeString();
string randomString = DateTime.Now.ToString("ddMMyyyyhhmmssffff");
WebHeaderCollection headers = new WebHeaderCollection();
headers.Add("Accept", "application/json");
headers.Add(RANDOM_HEADER_NAME, randomString);
Expand Down
2 changes: 1 addition & 1 deletion iyzipay-dotnet/iyzipay-dotnet.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>Iyzipay</id>
<version>1.0.6</version>
<version>1.0.7</version>
<title>Iyzipay</title>
<authors>Iyzico Ödeme Hizmetleri A.Ş.</authors>
<owners>iyzico</owners>
Expand Down
Binary file modified iyzipay-dotnet/lib/Iyzipay.dll
Binary file not shown.

0 comments on commit 808aa97

Please sign in to comment.