Bitcoin Forum
May 23, 2024, 07:35:07 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 [140] 141 »
2781  Economy / Service Discussion / Re: Deposit to BTC-e through OKPAY on: May 20, 2013, 03:16:37 PM
Yeah btc-e no news no information no transparency from btc-e besides "be back approx. May 20" yeah i can't see why this exchanges has so much lower volume than gox
2782  Other / Beginners & Help / Re: mt.gox > okpay ... withdrawal error on: April 25, 2013, 02:11:23 AM
means there was an error in transferring your funds (most likely cause they're low on okpay funds themselves to credit you) support is backlogged for about 4days. So open a ticket and wait 4 days
2783  Economy / Service Discussion / Re: MTGox to OKPay: Really slow! on: April 25, 2013, 02:08:05 AM
If they have funds in their okpay account about an hr from my experience. If they're low on funds...who knows up to a week?Huh
2784  Alternate cryptocurrencies / Altcoin Discussion / Re: is btc-e down for anyone else? on: April 17, 2013, 06:28:08 AM
Yeah a planned maintenance with few days heads up time or hell make it a weekly think like every sat for one hour. Don't announce it 15min before ninja maintenance
2785  Alternate cryptocurrencies / Altcoin Discussion / Re: is btc-e down for anyone else? on: April 17, 2013, 06:16:26 AM
The one grc quoted 04/16/2013 ... 7-00 to 8-00 MSK
it's 04/17/2013 1017am there now

There was an announcement near the top of their page all day today saying they will have scheduled maintenance... that might be why the site is down.

According to google the announcement said:

Quote
Dear Customers. 04/16/2013 we close our BTC-E site for Maintenance from 7-00 to 8-00 MSK. With regards, support BTC-E.
2786  Economy / Exchanges / Re: BTC-E.com exchange Bitcoin, Litecoin, Namecoin <-> USD\BTC (fee 0.2%) on: April 17, 2013, 06:03:27 AM
Yeah it's been line an hour an update would be nice.
2787  Alternate cryptocurrencies / Altcoin Discussion / Re: is btc-e down for anyone else? on: April 17, 2013, 05:53:01 AM
Yeah that was for yesterday. And it's 10 moscow time now
2788  Alternate cryptocurrencies / Altcoin Discussion / Re: is btc-e down for anyone else? on: April 17, 2013, 05:34:32 AM
Hope you didn't move them to gox cause after their cooldown that wouldn't be much of a win
2789  Alternate cryptocurrencies / Altcoin Discussion / Re: is btc-e down for anyone else? on: April 17, 2013, 05:30:04 AM
Down
2790  Economy / Trading Discussion / Re: MtGox OKPay Withdrawal Delay on: April 10, 2013, 12:28:44 AM
My withdraw has been sitting with Status: todo for over 30hrs now and its Tuesday  Huh heard they ran out of funds and topping up which should take by Friday??? hope that's not the case cause a week to withdraw is unacceptable
2791  Other / Beginners & Help / Re: OKPAY Verification on: April 06, 2013, 01:50:43 AM
It's my old credit union they have the lowest wire transfer fees but i don't have any branches near me any more. Yeah i can understand them making you jump through the loops to create account (if you don't want to don't do it), but it's another thing when they took my money hostage interest free and now telling me that i have to do stuff before they are willing to release it! And i didn't see anywhere on their site where it says that after i get verified they will take my money and hold it interest free until i can satisfy all of their requests whatever they decide to ask for
2792  Other / Beginners & Help / Re: OKPAY Verification on: April 05, 2013, 03:15:34 PM
Just wanted to post an update. After sending all the bills in and my drivers license i finally get an email stating "Congratulations! Your account state has been changed to Verified." So i send them a wire transfer which they sit on for 3 days or so and then get the following email.

The wire "tranSfer" was initiated from my bank online, so no receipt, and i just got this months statement from the bank meaning the transaction wont post until next month statement!!! So they expect to sit on my money for a month interest free while making me jump through all these hoops?? It'd actually be easier to claim that it was send from a 3rd party, and take a picture of me naked flipping them off?

Quote
We apologize for the delay you will experience regarding your wire tranfer in the time being, however, we give you our commitment that this delay will not re-occur next time (should your documents be in good standing).
To verify and confirm your recent bank wire transaction please perform the following steps:

    Upload a scanned image of a bank wire transfer receipt or the most recent bank account statement (with the transfer information) into your OKPAY account Profile » General Information section;
    Then create a support ticket to contact us regarding this matter.

In case the wire was sent by a 3rd party to your account, you will also need to:

    State the purpose of payment (in support ticket);
    Take a picture of yourself holding your identification document and a paper with your OKPAY WalletID. Upload it into your OKPAY account Profile » General Information section.
2793  Bitcoin / Bitcoin Technical Support / Re: Need help with mtgox api on python3 on: April 04, 2013, 07:59:48 PM
Disregard, apparently the code works and the issue was with my API keys. Generated a new set, and it worked  Shocked
2794  Bitcoin / Bitcoin Technical Support / Need help with mtgox api on python3 on: April 04, 2013, 04:39:36 PM
Ok so i'm going crazy trying to write a python3 code to get to gox's api v1
i found few programs but they either didn't work for me or are still doing v0 api. After taking all of the stuff out it came down that even the basic test case fails. Can someone please point out what i'm doing wrong here?
when i execute the following code i get
Code:
e.code -> 403
e.read -> b'{"result":"error","error":"Identification required to access private API","token":"login_error_invalid_rest_key"}'

(API keys are correct and are enabled on gox)

Code:
import time
import urllib.parse
import urllib.request
import base64
import hmac
import hashlib

url = "https://data.mtgox.com/api/1/generic/info"

GOX_secret = "your secret here"
GOX_secret = base64.b64decode((GOX_secret.encode()))
GOX_key = "your keyname here"

params = {"nonce":str(int(time.time()*1000))}
post_data = urllib.parse.urlencode(params)

#ahmac = base64.b64encode(str(hmac.new(base64.b64decode(self.secret),post_data,hashlib.sha512).digest()))
H = hmac.new(GOX_secret, post_data.encode(), hashlib.sha512).digest()
sign = base64.b64encode(H)
header = {"User-Agent": 'myGoxAPI', "Rest-Key": GOX_key, "Rest-Sign": sign}


req = urllib.request.Request(url, post_data, header) #POST

try:
        response = urllib.request.urlopen(req, post_data.encode()) #POST
except urllib.error.HTTPError as e:
        print("e.code ->", e.code)
        print("e.read ->", (e.read()))
        exit(5)

print("It'd be nice to get here")
2795  Other / Beginners & Help / Re: Whitelist Requests (Want out of here?) on: April 04, 2013, 11:18:01 AM
I want out of here. been reading this forum without logging in
2796  Other / Beginners & Help / Re: OKPAY Verification on: April 04, 2013, 10:21:14 AM
Yeah i finally got verified. On a separate note, just got an email that my discover card online password was changed (which i didn't change) low and behold someone got in, changed my email, username, reset my password. After jumping through the loops i finally get in and see a charge and a refund for the same amount that wasn't mine. The only new accounts i opened in a while were Okpay and Dwolla (which !#!@# forced me to use my social security# to get verified)
2797  Other / Beginners & Help / Re: python3 mtgox api on: April 04, 2013, 10:08:12 AM
You can, it'd be the same result just wouldn't be considered a nice style. It's a common practice to declare your variables together at the begging of the code e.g. if the api url changes you only have to change it in one place and don't have to hunt the code looking for every occurrence.
2798  Other / Beginners & Help / Re: python3 mtgox api on: April 04, 2013, 08:40:49 AM
MineMind, that's python2 and a lot of code for me right now. But i'll start digging.

dflatline, just for readability. I know it looks odd but it's not the same encoding/decoding  When you paste the key from GOX it comes in as a string, so initially GOX_secret.encode() changes a string into a bytes, and then  base64.b64decode changes those bytes to base64 for GOX's API. I guess those two lines could be replaced by GOX_secret = base64.b64decode(("your secret here".encode()))
2799  Other / Beginners & Help / Re: Is BitInstant working? When was your last successful purchase? on: April 04, 2013, 07:51:37 AM
Is it possible to transfer funds from Bininstant to btc-e? BTC-E's site claims "BitInstant: 13478 USD" but i don't see btc-e as an option to transfer to on bitinstants site
2800  Other / Beginners & Help / Re: Mtgox should explain the failure now! on: April 04, 2013, 07:44:59 AM
I thought they already said that they were getting DDOSed?
Pages: « 1 ... 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 [140] 141 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!